chore: bump default gas limit 60M mainnet (#16650)

This commit is contained in:
Matthias Seitz
2025-06-04 14:07:54 +02:00
committed by Alexey Shekhirin
parent c4d7a80aea
commit cf56e70bec

View File

@@ -42,9 +42,9 @@ pub trait PayloadBuilderConfig {
}
match chain.kind() {
ChainKind::Named(NamedChain::Sepolia | NamedChain::Holesky | NamedChain::Hoodi) => {
ETHEREUM_BLOCK_GAS_LIMIT_60M
}
ChainKind::Named(
NamedChain::Mainnet | NamedChain::Sepolia | NamedChain::Holesky | NamedChain::Hoodi,
) => ETHEREUM_BLOCK_GAS_LIMIT_60M,
_ => ETHEREUM_BLOCK_GAS_LIMIT_36M,
}
}