Skip to content

Commit

Permalink
adjust config
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-nguy committed Sep 29, 2023
1 parent abb0705 commit 9580897
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion integration_tests/configs/ibc.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ config {
'account-prefix': 'crc',
'coin-type': 60,
'precompiled-contract-address': '0x0000000000000000000000000000000000000065',
'gas-adjustment': 3,
'gas-adjustment': 2,
key_name: 'signer1',
accounts: super.accounts[:std.length(super.accounts) - 1] + [super.accounts[std.length(super.accounts) - 1] {
coins: super.coins + ',100000000000ibcfee',
Expand Down
6 changes: 3 additions & 3 deletions integration_tests/test_ica_precompile.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def test_call(ibc):
name = "signer2"
addr = ADDRS[name]
contract = w3.eth.contract(address=CONTRACT, abi=contract_info)
data = {"from": ADDRS[name], "gas": 500000}
data = {"from": ADDRS[name], "gas": 600000}
ica_address = register_acc(
cli_controller,
w3,
Expand Down Expand Up @@ -173,7 +173,7 @@ def test_sc_call(ibc):
name = "signer2"
signer = ADDRS[name]
keys = KEYS[name]
data = {"from": signer, "gas": 500000}
data = {"from": signer, "gas": 600000}
ica_address = register_acc(
cli_controller,
w3,
Expand All @@ -189,7 +189,7 @@ def test_sc_call(ibc):

# register from another user should fail
name = "signer1"
data = {"from": ADDRS[name], "gas": 500000}
data = {"from": ADDRS[name], "gas": 600000}
version = ""
tx = tcontract.functions.callRegister(connid, version).build_transaction(data)
res = send_transaction(w3, tx, KEYS[name])
Expand Down

0 comments on commit 9580897

Please sign in to comment.