From 05d347e194d0de66f635b61b72477ead4b75c7da Mon Sep 17 00:00:00 2001 From: Ryan Worl Date: Mon, 25 Feb 2019 19:08:29 -0500 Subject: [PATCH] Push byte slice instead of string onto the stack --- bindings/go/src/_stacktester/stacktester.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/go/src/_stacktester/stacktester.go b/bindings/go/src/_stacktester/stacktester.go index 8ef2c3d78f..b2012546e7 100644 --- a/bindings/go/src/_stacktester/stacktester.go +++ b/bindings/go/src/_stacktester/stacktester.go @@ -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":