Skip to content

Conversation

@codchen
Copy link
Collaborator

@codchen codchen commented Oct 28, 2025

Describe your changes and provide context

Testing performed to validate your change

Comment on lines +260 to +265
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

Iteration over map may be a possible source of non-determinism
Comment on lines +262 to +264
for k2, v2 := range v {
res.transientStates[k][k2] = v2
}

Check warning

Code scanning / CodeQL

Iteration over map Warning

Iteration over map may be a possible source of non-determinism
Comment on lines +267 to +269
for k, v := range ts.transientAccounts {
res.transientAccounts[k] = v
}

Check warning

Code scanning / CodeQL

Iteration over map Warning

Iteration over map may be a possible source of non-determinism
Comment on lines +271 to +273
for k, v := range ts.transientModuleStates {
res.transientModuleStates[k] = v
}

Check warning

Code scanning / CodeQL

Iteration over map Warning

Iteration over map may be a possible source of non-determinism
Comment on lines +276 to +278
for k, v := range ts.transientAccessLists.Addresses {
res.transientAccessLists.Addresses[k] = v
}

Check warning

Code scanning / CodeQL

Iteration over map Warning

Iteration over map may be a possible source of non-determinism
Comment on lines +282 to +284
for k2, v2 := range v {
res.transientAccessLists.Slots[i][k2] = v2
}

Check warning

Code scanning / CodeQL

Iteration over map Warning

Iteration over map may be a possible source of non-determinism
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants