Skip to content

Instantly share code, notes, and snippets.

View cx0der's full-sized avatar

Shivakumar Thanikachalam cx0der

View GitHub Profile
@cx0der
cx0der / block.py
Created August 12, 2018 12:21
Simple block in python
class Block:
def __init__(self, index, nonce, prev_hash, timestamp, data, hash):
self.index = index
self.nonce = nonce
self.prev_hash = prev_hash
self.data = data
self.timestamp = timestamp
self.hash = hash