-
Notifications
You must be signed in to change notification settings - Fork 0
/
coin.py
58 lines (41 loc) · 1.49 KB
/
coin.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
"""
Mini Blockchain using: Secure Hashing Algorithm 256
Giving SHA-256 a hash key, it would generated a non-sense value that represents
the key.
"""
import hashlib as hasher
import datetime as date
class Block:
def __init__(self, index, timestamp, data, previous_hash):
self.index = index
self.timestamp = timestamp
self.data = data
self.previous_hash = previous_hash
self.hash = self.hash_block()
def hash_block(self):
sha = hasher.sha256()
sha.update(str(self.index) +
str(self.timestamp) +
str(self.data) +
str(self.previous_hash))
return sha.hexdigest()
def create_genesis_block():
return Block(0, date.datetime.now(), "Genesis Block", "0")
def new_block(last_block):
this_index = last_block.index + 1
this_timestamp = date.datetime.now()
this_data = "Yo! I am block " + str(this_index)
this_hash = last_block.hash
return Block(this_index, this_timestamp, this_data, this_hash)
# Create the genesis within Blockchain
blockchain = [create_genesis_block()]
previous_block = blockchain[0]
# Upper Bound of blocks
blocks_num = 20
# Loop and create 20 subsequent blocks
for i in xrange(0, blocks_num):
next_block = new_block(previous_block)
blockchain.append(next_block)
previous_block = next_block
print "Block #{} has been added to the blockchain!".format(next_block.index)
print "Hash: {}\n".format(next_block.hash)