We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10572b2 commit a046312Copy full SHA for a046312
crates/relayer/src/chain/cosmos/types/gas.rs
@@ -1,13 +1,12 @@
1
use ibc_proto::cosmos::tx::v1beta1::Fee;
2
-use namada_sdk::DEFAULT_GAS_LIMIT;
3
4
use crate::chain::cosmos::calculate_fee;
5
use crate::chain::cosmos::config::CosmosSdkConfig;
6
use crate::config::dynamic_gas::DynamicGasPrice;
7
use crate::config::GasPrice;
8
9
/// Default gas limit when submitting a transaction.
10
-const DEFAULT_MAX_GAS: u64 = DEFAULT_GAS_LIMIT;
+const DEFAULT_MAX_GAS: u64 = 400_000;
11
12
const DEFAULT_FEE_GRANTER: &str = "";
13
0 commit comments