From ac36ca4841c57affbec393f9d325d807ef868bb9 Mon Sep 17 00:00:00 2001 From: Haardik H Date: Wed, 29 Oct 2025 18:22:45 -0400 Subject: [PATCH 1/2] fix: state override should be on state_diff, not state --- Cargo.lock | 2 +- crates/flashblocks-rpc/src/state.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 98ffebeb..254d4dd0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1552,7 +1552,7 @@ dependencies = [ [[package]] name = "base-reth-metering" -version = "0.1.12" +version = "0.1.13" dependencies = [ "alloy-consensus", "alloy-eips", diff --git a/crates/flashblocks-rpc/src/state.rs b/crates/flashblocks-rpc/src/state.rs index cd7eba48..12f9accd 100644 --- a/crates/flashblocks-rpc/src/state.rs +++ b/crates/flashblocks-rpc/src/state.rs @@ -627,8 +627,8 @@ where balance: Some(acc.info.balance), nonce: Some(acc.info.nonce), code: acc.info.code.clone().map(|code| code.bytes()), - state: Some(state_diff), - state_diff: None, + state: None, + state_diff: Some(state_diff), move_precompile_to: None, }; state_cache_builder = From 5c46777a3e0b76a019c1f7e07b962a78e63993bf Mon Sep 17 00:00:00 2001 From: Haardik H Date: Wed, 29 Oct 2025 19:25:43 -0400 Subject: [PATCH 2/2] bump to 0.1.14 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index fb691cea..88e4e11c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace.package] -version = "0.1.13" +version = "0.1.14" edition = "2021" rust-version = "1.85" license = "MIT"