-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add script to create the first block
- Loading branch information
1 parent
15827b6
commit 9502a45
Showing
1 changed file
with
13 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |