Skip to content

Commit

Permalink
Tweak test for privacy callback
Browse files Browse the repository at this point in the history
  • Loading branch information
moraygrieve committed Dec 18, 2024
1 parent 338ad52 commit 86760f6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/ten/ten_cor_117/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@


class PySysTest(TenNetworkTest):
GAS = '1000000'

def execute(self):
# connect to the network (use an ephemeral account)
Expand All @@ -29,7 +30,7 @@ def transact(self, calldata, web3, account, limit):
'chainId': web3.eth.chain_id,
'gasPrice': web3.eth.gas_price,
'value': web3.to_wei(0.01, 'ether')}
params['gas'] = 1_000_000
params['gas'] = int(self.GAS)
build_tx = target.build_transaction(params)

# sign, send and wait
Expand Down

0 comments on commit 86760f6

Please sign in to comment.