Browse Source
fix for coinbase transactions with recent caching changes
fix-133-memory-crash
Dan Janosik
6 years ago
No known key found for this signature in database
GPG Key ID: C6F8CE9FFDB2CED2
1 changed files with
1 additions and
1 deletions
-
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; |
|
|
|
} |
|
|
|
|
|
|
|