mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
refactor: rename BundleStateWithReceipts to BlockExecutionOutcome (#8730)
This commit is contained in:
@ -206,8 +206,8 @@ where
|
||||
|
||||
// extract the state from the notification and put it into the cache
|
||||
let committed = new_state.committed();
|
||||
let new_state = committed.state();
|
||||
for (addr, acc) in new_state.bundle_accounts_iter() {
|
||||
let new_execution_outcome = committed.execution_outcome();
|
||||
for (addr, acc) in new_execution_outcome.bundle_accounts_iter() {
|
||||
if let Some(info) = acc.info.clone() {
|
||||
// we want pre cache existing accounts and their storage
|
||||
// this only includes changed accounts and storage but is better than nothing
|
||||
|
||||
Reference in New Issue
Block a user