Browse Source

fix for coinbase transactions with recent caching changes

fix-133-memory-crash
Dan Janosik 6 years ago
parent
commit
971bf383b7
No known key found for this signature in database GPG Key ID: C6F8CE9FFDB2CED2
  1. 2
      app/api/coreApi.js

2
app/api/coreApi.js

@ -157,7 +157,7 @@ function shouldCacheTransaction(tx) {
return false;
}
if (tx.vin.length > 9) {
if (tx.vin != null && tx.vin.length > 9) {
return false;
}

Loading…
Cancel
Save