Skip to content

Commit

Permalink
Actually return result on successful tx
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanfrey committed Feb 2, 2017
1 parent 215c377 commit 6669777
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6669777

Please sign in to comment.