We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6838c1d commit 27a337dCopy full SHA for 27a337d
scripts/blockscan.py
@@ -26,7 +26,7 @@
26
for vout in tx['vout']:
27
reward += vout['value']
28
utxo = rpc.gettxout(tx['txid'], vout['n'])
29
- if utxo is None:
+ if not utxo is None:
30
unspent += vout['value']
31
if 'fee' in tx:
32
fee += tx['fee']
0 commit comments