Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 505 Bytes

File metadata and controls

31 lines (24 loc) · 505 Bytes

BlockChain

Simple code to show how a block chain works

Todo

Add consensus code so extra nodes can be added

Validate transactions

Building

You need python3 installed Create a virtual environment with

python3 -m venv ./venv

Activate the environment with

source venv/bin/activate

Install the required packages with

pip install -r requirements.txt

Adding dependencies

Add to the requirements.txt file and rerun

pip3 install -r requirements.txt