File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -338,6 +338,9 @@ func (s *StateDB) GetKeccakCodeHash(addr common.Address) common.Hash {
338338 if stateObject == nil {
339339 return common.Hash {}
340340 }
341+ if s .witness != nil {
342+ s .witness .AddCode (stateObject .Code (s .db ))
343+ }
341344 return common .BytesToHash (stateObject .KeccakCodeHash ())
342345}
343346
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import (
2424const (
2525 VersionMajor = 5 // Major version component of the current release
2626 VersionMinor = 10 // Minor version component of the current release
27- VersionPatch = 0 // Patch version component of the current release
27+ VersionPatch = 1 // Patch version component of the current release
2828 VersionMeta = "mainnet" // Version metadata to append to the version string
2929)
3030
You can’t perform that action at this time.
0 commit comments