From 9b30fab4fc5ab59f34fc8ad72b7288178246bd27 Mon Sep 17 00:00:00 2001 From: Anton Kaliaev Date: Wed, 22 Nov 2017 19:38:28 -0600 Subject: [PATCH] preserve behaviour of BaseApplication --- types/base_app.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/base_app.go b/types/base_app.go index 75fdae8d7..5432a5310 100644 --- a/types/base_app.go +++ b/types/base_app.go @@ -16,11 +16,11 @@ func (BaseApplication) SetOption(key string, value string) (log string) { } func (BaseApplication) DeliverTx(tx []byte) ResponseDeliverTx { - return ResponseDeliverTx{} + return ResponseDeliverTx{Code: CodeType_OK} } func (BaseApplication) CheckTx(tx []byte) ResponseCheckTx { - return ResponseCheckTx{} + return ResponseCheckTx{Code: CodeType_OK} } func (BaseApplication) Commit() ResponseCommit {