Skip to content

Commit

Permalink
Add script to create the first block
Browse files Browse the repository at this point in the history
  • Loading branch information
dhruv-aggarwal committed Jan 28, 2018
1 parent 15827b6 commit 9502a45
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions scripts/test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
from block import Block
from datetime import datetime


def initialize_block():
# index zero and arbitrary previous hash
block_data = {}
block_data['index'] = 0
block_data['timestamp'] = datetime.now()
block_data['data'] = 'First block data'
block_data['prev_hash'] = None
block = Block(block_data)
return block

0 comments on commit 9502a45

Please sign in to comment.