vc: increase default gas limit (#6897)

Increases default gas limit to 36M.
This commit is contained in:
Roman Krasiuk
2025-04-30 03:15:39 +02:00
committed by GitHub
parent 63a10eaaea
commit 34a6c3a930
4 changed files with 5 additions and 5 deletions

View File

@@ -497,7 +497,7 @@ fn no_doppelganger_protection_flag() {
fn no_gas_limit_flag() {
CommandLineTest::new()
.run()
.with_config(|config| assert!(config.validator_store.gas_limit == Some(30_000_000)));
.with_config(|config| assert!(config.validator_store.gas_limit == Some(36_000_000)));
}
#[test]
fn gas_limit_flag() {