Skip to content

Commit 45fe4d6

Browse files
authored
fix: state override should be on state_diff, not state (#150)
* fix: state override should be on state_diff, not state * bump to 0.1.14
1 parent f76c7cb commit 45fe4d6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace.package]
2-
version = "0.1.13"
2+
version = "0.1.14"
33
edition = "2021"
44
rust-version = "1.85"
55
license = "MIT"

crates/flashblocks-rpc/src/state.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -627,8 +627,8 @@ where
627627
balance: Some(acc.info.balance),
628628
nonce: Some(acc.info.nonce),
629629
code: acc.info.code.clone().map(|code| code.bytes()),
630-
state: Some(state_diff),
631-
state_diff: None,
630+
state: None,
631+
state_diff: Some(state_diff),
632632
move_precompile_to: None,
633633
};
634634
state_cache_builder =

0 commit comments

Comments
 (0)