mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-28 20:21:47 +00:00
Swap Query return params
This commit is contained in:
@ -77,6 +77,6 @@ func (app *CounterApplication) RemListener(key string) types.RetCode {
|
||||
return types.RetCodeOK
|
||||
}
|
||||
|
||||
func (app *CounterApplication) Query(query []byte) (types.RetCode, []byte) {
|
||||
return types.RetCodeOK, nil
|
||||
func (app *CounterApplication) Query(query []byte) ([]byte, types.RetCode) {
|
||||
return nil, types.RetCodeOK
|
||||
}
|
||||
|
Reference in New Issue
Block a user