satwikkansal / python_blockchain_app

A fully functional blockchain application implemented in Python from scratch (with tutorial).
819 stars 471 forks source link

Transaction size #52

Open srivatsavchenna opened 3 years ago

srivatsavchenna commented 3 years ago

I was wondering what is the transaction block size limit since blockchains usually have a 1MB limit on their blocks.

satwikkansal commented 3 years ago

There's no limit imposed as such on block size. However, if you want to add it should be fairly easy to add. This project is more like a minimal blockchain prototype.