Skip to content

Instantly share code, notes, and snippets.

@cx0der
Created August 12, 2018 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cx0der/45d437f3cdd10e65149de8403b188e05 to your computer and use it in GitHub Desktop.
Save cx0der/45d437f3cdd10e65149de8403b188e05 to your computer and use it in GitHub Desktop.
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