preserve behaviour of BaseApplication

This commit is contained in:
Anton Kaliaev
2017-11-22 19:38:28 -06:00
parent 03fafeec2f
commit 9b30fab4fc

View File

@ -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 {