Push byte slice instead of string onto the stack

This commit is contained in:
Ryan Worl 2019-02-25 19:08:29 -05:00
parent 4dd04862c7
commit 05d347e194
1 changed files with 1 additions and 1 deletions

View File

@ -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":