Skip to content

Commit a839db8

Browse files
authored
fix(genesis): Add osakaTime to mainnet.genesis.json (#55)
Right now, we'd have Signet on Prague and mainnet on Osaka. We want to be in lockstep.
1 parent f81d394 commit a839db8

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["crates/*"]
33
resolver = "2"
44

55
[workspace.package]
6-
version = "0.14.3"
6+
version = "0.14.4"
77
edition = "2024"
88
rust-version = "1.88"
99
authors = ["init4"]

crates/genesis/src/local.genesis.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"shanghaiTime": "0x0",
2222
"cancunTime": "0x0",
2323
"pragueTime": "0x0",
24+
"osakaTime": "0x0",
2425
"terminalTotalDifficulty": null,
2526
"terminalTotalDifficultyPassed": false,
2627
"ethash": null,

crates/genesis/src/mainnet.genesis.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"shanghaiTime": "0x0",
2222
"cancunTime": "0x0",
2323
"pragueTime": "0x0",
24+
"osakaTime": "0x0",
2425
"terminalTotalDifficulty": null,
2526
"terminalTotalDifficultyPassed": false,
2627
"ethash": null,

crates/node-tests/src/context.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ impl SignetTestContext {
316316
let contract_address = deployer.create(self.nonce(deployer));
317317
let tx = TransactionRequest::default()
318318
.from(deployer)
319-
.gas_limit(21_000_000)
319+
.gas_limit(16_000_000)
320320
.with_deploy_code(COUNTER_DEPLOY_CODE);
321321

322322
let (_tx, _receipt) = self.process_alloy_tx(&tx).await.unwrap();
@@ -329,7 +329,7 @@ impl SignetTestContext {
329329
let contract_address = deployer.create(self.nonce(deployer));
330330
let tx = TransactionRequest::default()
331331
.from(deployer)
332-
.gas_limit(21_000_000)
332+
.gas_limit(16_000_000)
333333
.with_deploy_code(Log::BYTECODE.clone());
334334

335335
let (_tx, _receipt) = self.process_alloy_tx(&tx).await.unwrap();

crates/node-tests/tests/submit-tx.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ async fn test_deploy_contract() {
5252
.from(deployer)
5353
.max_priority_fee_per_gas(GWEI_TO_WEI.into())
5454
.max_fee_per_gas(GWEI_TO_WEI.into())
55-
.gas_limit(21_000_000)
55+
.gas_limit(16_000_000)
5656
.with_deploy_code(COUNTER_DEPLOY_CODE);
5757

5858
let (tx, receipt) = ctx.process_alloy_tx(&tx).await.unwrap();

0 commit comments

Comments
 (0)