PyBC icon indicating copy to clipboard operation
PyBC copied to clipboard

Bitcoin blockchain parser for Python 2 and 3. Includes handy examples.

Results 5 PyBC issues
Sort by recently updated
recently updated
newest added

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...

help wanted

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:...

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 =...