Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(app): use viper as appOpts instead of Default #36

Merged
merged 1 commit into from
Mar 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import (
"encoding/hex"
"fmt"
"github.com/cosmos/cosmos-sdk/baseapp"
"github.com/cosmos/cosmos-sdk/simapp"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/gorilla/mux"
"github.com/spf13/viper"
Expand Down Expand Up @@ -71,6 +70,7 @@ func main() {

// customize CMS to limit kv store's read height on query
cms := rootmulti.NewStore(batched, hldb)
vpr := viper.GetViper()

var app = terra.NewTerraApp(
logger,
Expand All @@ -81,8 +81,8 @@ func main() {
mantlemintConfig.Home,
0,
codec,
simapp.EmptyAppOptions{},
wasmconfig.GetConfig(viper.GetViper()),
vpr,
wasmconfig.GetConfig(vpr),
fauxMerkleModeOpt,
func(ba *baseapp.BaseApp) {
ba.SetCMS(cms)
Expand Down