From 9938fca578a91bc378b7f4269e536ad119fe9d9e Mon Sep 17 00:00:00 2001 From: Marco Granelli Date: Tue, 3 Sep 2024 23:25:33 +0200 Subject: [PATCH] Increases gas limits for ibc e2e tests --- crates/tests/src/e2e/ibc_tests.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/tests/src/e2e/ibc_tests.rs b/crates/tests/src/e2e/ibc_tests.rs index 6c14698c13..5d0d1864bb 100644 --- a/crates/tests/src/e2e/ibc_tests.rs +++ b/crates/tests/src/e2e/ibc_tests.rs @@ -1053,7 +1053,7 @@ fn transfer( "--port-id", &port_id, "--gas-limit", - "200000", + "250000", "--node", &rpc, ]); @@ -1229,7 +1229,7 @@ fn propose_inflation(test: &Test) -> Result { "--data-path", proposal_json_path.to_str().unwrap(), "--gas-limit", - "4000000", + "10000000", "--node", &rpc, ]);