Files
bitcoinbook/code/rpc_example.py
2017-10-19 22:35:15 +02:00

11 lines
267 B
Python

from bitcoin.rpc import RawProxy
# Create a connection to local Bitcoin Core node
p = RawProxy()
# Run the getblockchaininfo command, store the resulting data in info
info = p.getblockchaininfo()
# Retrieve the 'blocks' element from the info
print(info['blocks'])