Browse Source

preserve behaviour of BaseApplication

pull/1780/head
Anton Kaliaev 7 years ago
parent
commit
9b30fab4fc
No known key found for this signature in database GPG Key ID: 7B6881D965918214
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      types/base_app.go

+ 2
- 2
types/base_app.go 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 {


Loading…
Cancel
Save