Remove logging

This commit is contained in:
Mariano Sorgente 2020-07-06 16:23:18 +09:00 committed by Gene Hoffman
parent 4ba329bd3e
commit 04e4a6fa51

View File

@ -5,14 +5,11 @@ from .block_tools import BlockTools
def make_test_constants_with_genesis(test_constants_overrides: Dict):
print("AMKING TESTS CONSTANTS")
test_constants = constants.replace(**test_constants_overrides)
bt = BlockTools()
new_genesis_block = bt.create_genesis_block(test_constants, bytes([0] * 32), b"0")
print("genesis:", new_genesis_block)
final_test_constants = test_constants.replace(
GENESIS_BLOCK=bytes(new_genesis_block)