Skip to content

Instantly share code, notes, and snippets.

@cx0der
Created August 12, 2018 14:58
Embed
What would you like to do?
Initialize Pychain
def mine_genesis_block ():
timestamp = time.time()
return mine_block(0, "0", timestamp, "Genisis Block")
chain = [mine_genesis_block()]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment