diff --git a/core/vm/opcodes.go b/core/vm/opcodes.go index cf9a26231b..d61508cf9d 100644 --- a/core/vm/opcodes.go +++ b/core/vm/opcodes.go @@ -208,13 +208,6 @@ const ( LOG4 ) -// unofficial opcodes used for parsing. -const ( - PUSH OpCode = 0xb0 + iota - DUP - SWAP -) - // 0xf0 range - closures. const ( CREATE OpCode = 0xf0 @@ -395,10 +388,6 @@ var opCodeToString = map[OpCode]string{ REVERT: "REVERT", INVALID: "INVALID", SELFDESTRUCT: "SELFDESTRUCT", - - PUSH: "PUSH", - DUP: "DUP", - SWAP: "SWAP", } func (op OpCode) String() string { diff --git a/params/version.go b/params/version.go index 70c5ef0f07..d362a67ada 100644 --- a/params/version.go +++ b/params/version.go @@ -24,7 +24,7 @@ import ( const ( VersionMajor = 4 // Major version component of the current release VersionMinor = 3 // Minor version component of the current release - VersionPatch = 59 // Patch version component of the current release + VersionPatch = 60 // Patch version component of the current release VersionMeta = "sepolia" // Version metadata to append to the version string )