make the rest of the code compile

This commit is contained in:
Callum Waters
2021-08-24 13:26:01 +02:00
parent dcf91478f8
commit 68c54f0676
283 changed files with 3874 additions and 3906 deletions

View File

@@ -87,7 +87,7 @@ Create a file called `app.go` with the following content:
package main
import (
abcitypes "github.com/tendermint/tendermint/abci/types"
abcitypes "github.com/tendermint/tendermint/pkg/abci"
)
type KVStoreApplication struct {}
@@ -346,7 +346,7 @@ import (
"github.com/dgraph-io/badger"
"github.com/spf13/viper"
abci "github.com/tendermint/tendermint/abci/types"
"github.com/tendermint/tendermint/pkg/abci"
cfg "github.com/tendermint/tendermint/config"
tmflags "github.com/tendermint/tendermint/libs/cli/flags"
"github.com/tendermint/tendermint/libs/log"

View File

@@ -90,7 +90,7 @@ Create a file called `app.go` with the following content:
package main
import (
abcitypes "github.com/tendermint/tendermint/abci/types"
abcitypes "github.com/tendermint/tendermint/pkg/abci"
)
type KVStoreApplication struct {}