Skip to content

Instantly share code, notes, and snippets.

@murych
Forked from aunyks/snakecoin-genesis.py
Created July 18, 2017 11:02
Show Gist options
  • Save murych/43194b16de2374a6436a873b3026c4b6 to your computer and use it in GitHub Desktop.
Save murych/43194b16de2374a6436a873b3026c4b6 to your computer and use it in GitHub Desktop.
import datetime as date
def create_genesis_block():
# Manually construct a block with
# index zero and arbitrary previous hash
return Block(0, date.datetime.now(), "Genesis Block", "0")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment