Push byte slice instead of string onto the stack
This commit is contained in:
parent
4dd04862c7
commit
05d347e194
|
@ -676,7 +676,7 @@ func (sm *StackMachine) processInst(idx int, inst tuple.Tuple) {
|
|||
sm.store(idx, []byte("ERROR: MULTIPLE"))
|
||||
} else {
|
||||
packed := t.Pack()
|
||||
sm.store(idx, "OK")
|
||||
sm.store(idx, []byte("OK"))
|
||||
sm.store(idx, packed)
|
||||
}
|
||||
case op == "TUPLE_UNPACK":
|
||||
|
|
Loading…
Reference in New Issue