Update compiled contract

This commit is contained in:
Bruno Valente 2024-12-24 18:43:44 +08:00
parent a56876eb1a
commit 9af9c7f7a9
6 changed files with 255 additions and 23 deletions

View File

@ -1 +1 @@
bea58429e436e4952ae69235d9079cfc4ac5f3b3 30f0f921a80078e43d578c82b746677bcf06d786

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -295,7 +295,7 @@ class BlockchainNode(TestNode):
dummy_reward_contract, _ = deploy_contract("DummyReward", []) dummy_reward_contract, _ = deploy_contract("DummyReward", [])
self.log.debug("DummyReward deployed") self.log.debug("DummyReward deployed")
flow_contract, _ = deploy_contract("Flow", [mine_period, 0]) flow_contract, _ = deploy_contract("Flow", [0])
self.log.debug("Flow deployed") self.log.debug("Flow deployed")
mine_contract, _ = deploy_contract("PoraMineTest", [0]) mine_contract, _ = deploy_contract("PoraMineTest", [0])
@ -306,7 +306,7 @@ class BlockchainNode(TestNode):
mine_contract.functions.setTargetSubmissions(2).transact(TX_PARAMS) mine_contract.functions.setTargetSubmissions(2).transact(TX_PARAMS)
self.log.debug("Mine Initialized") self.log.debug("Mine Initialized")
flow_initialize_hash = flow_contract.functions.initialize(dummy_market_contract.address).transact(TX_PARAMS) flow_initialize_hash = flow_contract.functions.initialize(dummy_market_contract.address, mine_period).transact(TX_PARAMS)
self.log.debug("Flow Initialized") self.log.debug("Flow Initialized")
self.wait_for_transaction_receipt(w3, flow_initialize_hash) self.wait_for_transaction_receipt(w3, flow_initialize_hash)
@ -329,7 +329,7 @@ class BlockchainNode(TestNode):
reward_contract, _ = deploy_contract("ChunkLinearReward", [lifetime_seconds]) reward_contract, _ = deploy_contract("ChunkLinearReward", [lifetime_seconds])
self.log.debug("Reward deployed") self.log.debug("Reward deployed")
flow_contract, _ = deploy_contract("FixedPriceFlow", [mine_period, 0]) flow_contract, _ = deploy_contract("FixedPriceFlow", [0])
self.log.debug("Flow deployed") self.log.debug("Flow deployed")
mine_contract.functions.initialize(1, flow_contract.address, reward_contract.address).transact(TX_PARAMS) mine_contract.functions.initialize(1, flow_contract.address, reward_contract.address).transact(TX_PARAMS)
@ -346,7 +346,7 @@ class BlockchainNode(TestNode):
reward_contract.functions.setBaseReward(10 ** 18).transact(TX_PARAMS) reward_contract.functions.setBaseReward(10 ** 18).transact(TX_PARAMS)
self.log.debug("Reward Initialized") self.log.debug("Reward Initialized")
flow_initialize_hash = flow_contract.functions.initialize(market_contract.address).transact(TX_PARAMS) flow_initialize_hash = flow_contract.functions.initialize(market_contract.address, mine_period).transact(TX_PARAMS)
self.log.debug("Flow Initialized") self.log.debug("Flow Initialized")
self.wait_for_transaction_receipt(w3, flow_initialize_hash) self.wait_for_transaction_receipt(w3, flow_initialize_hash)