diff --git a/crates/sdk/src/tx.rs b/crates/sdk/src/tx.rs index 78ec4c02e6d..cca7b0cc59f 100644 --- a/crates/sdk/src/tx.rs +++ b/crates/sdk/src/tx.rs @@ -405,11 +405,9 @@ pub fn display_batch_resp(context: &impl Namada, resp: &TxResponse) { InnerTxResult::Success(_) => { display_line!( context.io(), - "Transaction {} was successfully applied at height {}, \ - consuming {} gas units.", + "Transaction {} was successfully applied at height {}.", cmt_hash, resp.height, - resp.gas_used ); } InnerTxResult::VpsRejected(inner) => { diff --git a/crates/tests/src/e2e/ibc_tests.rs b/crates/tests/src/e2e/ibc_tests.rs index 6b5438ac392..b9827179f01 100644 --- a/crates/tests/src/e2e/ibc_tests.rs +++ b/crates/tests/src/e2e/ibc_tests.rs @@ -2204,7 +2204,7 @@ fn check_tx_height(test: &Test, client: &mut NamadaCmd) -> Result { .split_once(' ') .unwrap() .1 - .split_once(',') + .split_once('.') .unwrap() .0; let height: u32 = height_str.parse().unwrap();