preserve behaviour of BaseApplication

This commit is contained in:
Anton Kaliaev 2017-11-22 19:38:28 -06:00
parent 03fafeec2f
commit 9b30fab4fc
No known key found for this signature in database
GPG Key ID: 7B6881D965918214
1 changed files with 2 additions and 2 deletions

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 {