Update compiled contract (#303)

This commit is contained in:
bruno-valante 2024-12-26 14:19:48 +08:00 committed by GitHub
parent a56876eb1a
commit 0548aaf2cb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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", [])
self.log.debug("DummyReward deployed")
flow_contract, _ = deploy_contract("Flow", [mine_period, 0])
flow_contract, _ = deploy_contract("Flow", [0])
self.log.debug("Flow deployed")
mine_contract, _ = deploy_contract("PoraMineTest", [0])
@ -306,7 +306,7 @@ class BlockchainNode(TestNode):
mine_contract.functions.setTargetSubmissions(2).transact(TX_PARAMS)
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.wait_for_transaction_receipt(w3, flow_initialize_hash)
@ -329,7 +329,7 @@ class BlockchainNode(TestNode):
reward_contract, _ = deploy_contract("ChunkLinearReward", [lifetime_seconds])
self.log.debug("Reward deployed")
flow_contract, _ = deploy_contract("FixedPriceFlow", [mine_period, 0])
flow_contract, _ = deploy_contract("FixedPriceFlow", [0])
self.log.debug("Flow deployed")
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)
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.wait_for_transaction_receipt(w3, flow_initialize_hash)