diff --git a/core/asm/compiler.go b/core/asm/compiler.go index 18dc0877ffea..ec46b77d667c 100644 --- a/core/asm/compiler.go +++ b/core/asm/compiler.go @@ -247,9 +247,6 @@ func isJump(op string) bool { // toBinary converts text to a vm.OpCode func toBinary(text string) vm.OpCode { - if isPush(text) { - text = "push1" - } return vm.StringToOp(strings.ToUpper(text)) }