-
Notifications
You must be signed in to change notification settings - Fork 103
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
Separate Wasmstore from normal db: initial #317
Conversation
If not found in db - returns an error instead of marking state for revertion
arbitrum/recordingdb.go
Outdated
} else if ok, _ := rawdb.IsActivatedModuleKey(key); ok { | ||
// Arbitrum: the module is non-consensus (only its hash is) | ||
return db.diskDb.Get(key) | ||
return db.wasmDb.Get(key) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will these ever be called? Shouldn't they be called on the wasm database instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
moved some things around and now it is indeed not needed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.