SYMBOL INDEX (17 symbols across 1 files) FILE: miner.py function hash_256 (line 5) | def hash_256(string): class TransactionGenerator (line 9) | class TransactionGenerator: method __init__ (line 10) | def __init__(self): method generate_transaction (line 13) | def generate_transaction(self): class Block (line 23) | class Block: method __init__ (line 24) | def __init__(self, hash_prev_block, target): method add_transaction (line 31) | def add_transaction(self, new_transac): method is_block_full (line 36) | def is_block_full(self): method is_block_ready_to_mine (line 40) | def is_block_ready_to_mine(self): method __str__ (line 43) | def __str__(self): method apply_mining_step (line 46) | def apply_mining_step(self): class BlockChain (line 59) | class BlockChain: method __init__ (line 60) | def __init__(self): method push (line 63) | def push(self, block): method notify_everybody (line 66) | def notify_everybody(self): method get_last_block (line 72) | def get_last_block(self): function my_first_miner (line 76) | def my_first_miner():