forked from cerc-io/plugeth
all: use strings.EqualFold for string comparison (#24890)
This commit is contained in:
@@ -243,12 +243,12 @@ func (c *Compiler) pushBin(v interface{}) {
|
||||
// isPush returns whether the string op is either any of
|
||||
// push(N).
|
||||
func isPush(op string) bool {
|
||||
return strings.ToUpper(op) == "PUSH"
|
||||
return strings.EqualFold(op, "PUSH")
|
||||
}
|
||||
|
||||
// isJump returns whether the string op is jump(i)
|
||||
func isJump(op string) bool {
|
||||
return strings.ToUpper(op) == "JUMPI" || strings.ToUpper(op) == "JUMP"
|
||||
return strings.EqualFold(op, "JUMPI") || strings.EqualFold(op, "JUMP")
|
||||
}
|
||||
|
||||
// toBinary converts text to a vm.OpCode
|
||||
|
||||
Reference in New Issue
Block a user