PyBC
PyBC copied to clipboard
Bitcoin blockchain parser for Python 2 and 3. Includes handy examples.
When I run the _read_next_block()_ with a .dat file from my bitcoin core folder. An error pops up. **Code ran:** ``` path = 'pybit/Blocks/' f = 'blk02944.dat' dat = Dat(path,...
The core wallet serialises larger (?) integers into the CVarInt format which is not read correctly by pybit.py3.common.Common. Any time a CVarInt is parsed, it returns as a massive number...
In transaction class, hash is calculated from incomplete header that contains only the first input and output. This needs to be updated to handle all inputs and outputs. from pybt.py3.block.Transaction:...
blk01300.dat 0%| | 0/134037112 [00:00
Hi in your doc can see `from py3.Block import Dat Specify .dat to load path = 'Blocks/' f = 'blk00003.dat' dat = Dat(path, f, verb=5) Create Dat object dat =...