Fix the fallback gas for substrate chains

This commit is contained in:
Omar Abdulla
2025-10-07 00:08:32 +03:00
parent 983ee7f355
commit afd75ba535
2 changed files with 2 additions and 5 deletions
@@ -346,7 +346,7 @@ impl SubstrateNode {
.get_or_try_init(|| async move {
construct_concurrency_limited_provider::<ReviveNetwork, _>(
self.rpc_url.as_str(),
FallbackGasFiller::new(250_000_000, 5_000_000_000, 1_000_000_000),
FallbackGasFiller::new(u64::MAX, 5_000_000_000, 1_000_000_000),
ChainIdFiller::new(Some(CHAIN_ID)),
NonceFiller::new(self.nonce_manager.clone()),
self.wallet.clone(),