Skip to content

Commit

Permalink
Fix gas in LIQUID_ACCOUNTS test now that the user is charged
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristianBorst committed Feb 26, 2024
1 parent c8fa1e7 commit 537cd1d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions integration_tests/test_runner/src/tests/liquid_accounts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,10 @@ pub async fn liquid_accounts_test(
)
.await
.expect("Unable to liquify account");
info!("Got liquify account response:\n{}", liquify_res.raw_log);
info!(
"Got liquify account response:\n{}\nTx Hash: {}\nGas used: {}",
liquify_res.raw_log, liquify_res.txhash, liquify_res.gas_used
);

let (liquid_account, _eth_owner) =
assert_correct_account(web3, &mut microtx_qc, to_liquify.ethermint_address).await;
Expand Down Expand Up @@ -227,7 +230,7 @@ pub async fn liquify_account(
to_liquify,
Fee {
amount: vec![fee],
gas_limit: 1_000_000,
gas_limit: 2_500_000,
payer: None,
granter: None,
},
Expand Down

0 comments on commit 537cd1d

Please sign in to comment.