Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core/state: store storageOrigin in one map #31488

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

jsvisa
Copy link
Contributor

@jsvisa jsvisa commented Mar 25, 2025

Seems we don't need to store the storagesOrigin in two maps, store in one map is enough.

@rjl493456442 rjl493456442 self-assigned this Mar 25, 2025
@rjl493456442 rjl493456442 added this to the 1.15.7 milestone Mar 26, 2025
@fjl fjl removed this from the 1.15.7 milestone Mar 27, 2025
jsvisa and others added 2 commits April 1, 2025 23:03
Signed-off-by: jsvisa <delweng@gmail.com>
Signed-off-by: jsvisa <delweng@gmail.com>
@jsvisa jsvisa force-pushed the state-storage-aio branch from 91b23cc to 6533018 Compare April 1, 2025 15:05
@@ -1213,7 +1213,7 @@ func (s *StateDB) commit(deleteEmptyObjects bool, noStorageWiping bool) (*stateU
// Run the storage updates concurrently to one another
workers.Go(func() error {
// Write any storage changes in the state object to its storage trie
update, set, err := obj.commit()
update, set, err := obj.commit(noStorageWiping)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't get why noStorageWiping is synonymous with rawStorageKey?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Inside the state udpate, rawStorageKey == noStorageWiping, ref

return newStateUpdate(noStorageWiping, origin, root, deletes, updates, nodes), nil

How about rename one of the names, leaving only rawStorageKey or noStorageWiping, to reduce the ambiguity?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants