-
Notifications
You must be signed in to change notification settings - Fork 856
use flat cache for transient storage (#2270) #2508
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
base: release/v6.2.0-branch
Are you sure you want to change the base?
Conversation
| for k, v := range ts.transientStates { | ||
| res.transientStates[k] = make(map[string]common.Hash, len(v)) | ||
| for k2, v2 := range v { | ||
| res.transientStates[k][k2] = v2 | ||
| } | ||
| } |
Check warning
Code scanning / CodeQL
Iteration over map Warning
| for k2, v2 := range v { | ||
| res.transientStates[k][k2] = v2 | ||
| } |
Check warning
Code scanning / CodeQL
Iteration over map Warning
| for k, v := range ts.transientAccounts { | ||
| res.transientAccounts[k] = v | ||
| } |
Check warning
Code scanning / CodeQL
Iteration over map Warning
| for k, v := range ts.transientModuleStates { | ||
| res.transientModuleStates[k] = v | ||
| } |
Check warning
Code scanning / CodeQL
Iteration over map Warning
| for k, v := range ts.transientAccessLists.Addresses { | ||
| res.transientAccessLists.Addresses[k] = v | ||
| } |
Check warning
Code scanning / CodeQL
Iteration over map Warning
| for k2, v2 := range v { | ||
| res.transientAccessLists.Slots[i][k2] = v2 | ||
| } |
Check warning
Code scanning / CodeQL
Iteration over map Warning
Describe your changes and provide context
Testing performed to validate your change