From 8e452d413b6f09fe37ce29b0efc8463536d5858e Mon Sep 17 00:00:00 2001 From: Zhang Zhuo Date: Sun, 27 Aug 2023 09:00:26 +0800 Subject: [PATCH 1/2] fix: more consistent invalid opcode trace --- core/vm/opcodes.go | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/core/vm/opcodes.go b/core/vm/opcodes.go index cf9a26231b03..d61508cf9d47 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 { From d007d6f5808ea79d3bfea0cef0e4ab743bbad5fa Mon Sep 17 00:00:00 2001 From: HAOYUatHZ <37070449+HAOYUatHZ@users.noreply.github.com> Date: Tue, 29 Aug 2023 15:58:56 +0800 Subject: [PATCH 2/2] Update version.go --- params/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/params/version.go b/params/version.go index 44d4eacb2b3e..8bc7b09a8323 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 = 55 // Patch version component of the current release + VersionPatch = 56 // Patch version component of the current release VersionMeta = "sepolia" // Version metadata to append to the version string )