From 66697774dd8e5194169c7eec8db439c29e33799f Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Thu, 2 Feb 2017 21:26:46 +0100 Subject: [PATCH] Actually return result on successful tx --- app/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.go b/app/app.go index a6ad90424d..cbf85c123a 100644 --- a/app/app.go +++ b/app/app.go @@ -94,7 +94,7 @@ func (app *Basecoin) DeliverTx(txBytes []byte) (res abci.Result) { if res.IsErr() { return res.PrependLog("Error in DeliverTx") } - return abci.OK + return res } // TMSP::CheckTx