mirror of
https://github.com/bitcoinbook/bitcoinbook
synced 2024-11-25 09:28:25 +00:00
Update rpc_transaction.py
It only works with 'address'. Otherwise I get a "KeyError: 'addresses'"
This commit is contained in:
parent
a144e84c2d
commit
9e314ba9d7
@ -13,4 +13,4 @@ decoded_tx = p.decoderawtransaction(raw_tx)
|
|||||||
|
|
||||||
# Retrieve each of the outputs from the transaction
|
# Retrieve each of the outputs from the transaction
|
||||||
for output in decoded_tx['vout']:
|
for output in decoded_tx['vout']:
|
||||||
print(output['scriptPubKey']['addresses'], output['value'])
|
print(output['scriptPubKey']['address'], output['value'])
|
||||||
|
Loading…
Reference in New Issue
Block a user