Skip to content

Commit

Permalink
fix: add Mantle + Mantle testnet as exceptions for gas calculatio…
Browse files Browse the repository at this point in the history
…n during deployment (#8553)
  • Loading branch information
zerosnacks committed Jul 29, 2024
1 parent dc23de3 commit d5ff3d3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions crates/cli/src/utils/cmd.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,15 @@ pub fn has_different_gas_calc(chain_id: u64) -> bool {
return matches!(
chain,
NamedChain::Arbitrum |
NamedChain::ArbitrumTestnet |
NamedChain::ArbitrumGoerli |
NamedChain::ArbitrumSepolia |
NamedChain::Moonbeam |
NamedChain::Moonriver |
NamedChain::ArbitrumTestnet |
NamedChain::Mantle |
NamedChain::MantleTestnet |
NamedChain::Moonbase |
NamedChain::MoonbeamDev
NamedChain::Moonbeam |
NamedChain::MoonbeamDev |
NamedChain::Moonriver
);
}
false
Expand Down

0 comments on commit d5ff3d3

Please sign in to comment.