Aareon / ChickenTicket

Pure Python implementation of a cryptocurrency blockchain
MIT License
15 stars 2 forks source link

TODO: Block/Transaction Validation #22

Open Aareon opened 2 years ago

Aareon commented 2 years ago

Need to be able to instance a new Block/Transaction class using data from a JSON message

Aareon commented 2 years ago

Recreating a block from JSON data is done now in Block.from_dict(). Need to create a validate method to check header and block data. Must also validate transactions.

Aareon commented 2 years ago

See #17 for more information on checks that must be performed