Skip to content

Commit a046312

Browse files
committed
set the default max gas back to 400_000
1 parent 10572b2 commit a046312

File tree

1 file changed

+1
-2
lines changed
  • crates/relayer/src/chain/cosmos/types

1 file changed

+1
-2
lines changed

crates/relayer/src/chain/cosmos/types/gas.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
use ibc_proto::cosmos::tx::v1beta1::Fee;
2-
use namada_sdk::DEFAULT_GAS_LIMIT;
32

43
use crate::chain::cosmos::calculate_fee;
54
use crate::chain::cosmos::config::CosmosSdkConfig;
65
use crate::config::dynamic_gas::DynamicGasPrice;
76
use crate::config::GasPrice;
87

98
/// Default gas limit when submitting a transaction.
10-
const DEFAULT_MAX_GAS: u64 = DEFAULT_GAS_LIMIT;
9+
const DEFAULT_MAX_GAS: u64 = 400_000;
1110

1211
const DEFAULT_FEE_GRANTER: &str = "";
1312

0 commit comments

Comments
 (0)