|
| 1 | +import hashlib as hasher |
| 2 | +import datetime as date |
| 3 | + |
| 4 | +#importing the block |
| 5 | +from block import Block |
| 6 | + |
| 7 | +#importing the chain |
| 8 | +import jupiter_block as jb |
| 9 | +import pluto_block as pb |
| 10 | +import neptune_block as nb |
| 11 | + |
| 12 | + |
| 13 | +# Generate all later blocks in the blockchain |
| 14 | +def next_block(last_block): |
| 15 | + this_index = last_block.index + 1 |
| 16 | + this_timestamp = date.datetime.now() |
| 17 | + this_data = last_block.data |
| 18 | + this_hash = last_block.hash |
| 19 | + return Block(this_index, this_timestamp, this_data, this_hash) |
| 20 | + |
| 21 | +# Create the blockchain and add the genesis block |
| 22 | +blockchain = [jb.create_jupiter_block(), pb.create_pluto_block(), nb.create_neptune_block()] |
| 23 | + |
| 24 | +# How many blocks should we add to the chain |
| 25 | +# after the genesis block |
| 26 | +num_of_blocks_to_add = 1 |
| 27 | + |
| 28 | +# Add blocks to the chain |
| 29 | +for i in range (len(blockchain)): |
| 30 | + previous_block = blockchain[i] |
| 31 | + for i in range(0, num_of_blocks_to_add): |
| 32 | + block_to_add = next_block(previous_block) |
| 33 | + blockchain.append(block_to_add) |
| 34 | + previous_block = block_to_add |
| 35 | + # Tell everyone about it! |
| 36 | + print("Block #{} added ".format(block_to_add.data)) |
| 37 | + print("Hash: {}".format(block_to_add.hash)) |
| 38 | + print("TimeStamp: {}".format(block_to_add.timestamp)) |
| 39 | + print("Previous hash: {} \n".format(block_to_add.previous_hash)) |
| 40 | + |
| 41 | + |
| 42 | + |
0 commit comments