|
|
- package nilapp
-
- import (
- "github.com/tendermint/abci/types"
- )
-
- type NilApplication struct {
- }
-
- func NewNilApplication() *NilApplication {
- return &NilApplication{}
- }
-
- func (app *NilApplication) Info() (resInfo types.ResponseInfo) {
- return
- }
-
- func (app *NilApplication) SetOption(key string, value string) (log string) {
- return ""
- }
-
- func (app *NilApplication) DeliverTx(tx []byte) types.Result {
- return types.NewResultOK(nil, "")
- }
-
- func (app *NilApplication) CheckTx(tx []byte) types.Result {
- return types.NewResultOK(nil, "")
- }
-
- func (app *NilApplication) Commit() types.Result {
- return types.NewResultOK([]byte("nil"), "")
- }
-
- func (app *NilApplication) Query(reqQuery types.RequestQuery) (resQuery types.ResponseQuery) {
- return resQuery
- }
|