Skip to content

Commit 71ad6c2

Browse files
committed
more tweaks
1 parent c71b6a5 commit 71ad6c2

File tree

4 files changed

+28
-4
lines changed

4 files changed

+28
-4
lines changed

app/app.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package app
22

33
import (
44
"context"
5-
"encoding/json"
65
"io"
76
"net/http"
87
"os"
@@ -37,6 +36,7 @@ import (
3736

3837
dbm "github.com/cometbft/cometbft-db"
3938
abci "github.com/cometbft/cometbft/abci/types"
39+
tmjson "github.com/cometbft/cometbft/libs/json"
4040
"github.com/cometbft/cometbft/libs/log"
4141
tmos "github.com/cometbft/cometbft/libs/os"
4242

@@ -136,6 +136,7 @@ func NewQuicksilver(
136136
bApp.SetCommitMultiStoreTracer(traceStore)
137137
bApp.SetVersion(version.Version)
138138
bApp.SetInterfaceRegistry(interfaceRegistry)
139+
bApp.SetTxEncoder(encodingConfig.TxConfig.TxEncoder())
139140

140141
app := &Quicksilver{
141142
BaseApp: bApp,
@@ -219,7 +220,6 @@ func NewQuicksilver(
219220
// handle upgrades here
220221
app.setUpgradeHandlers()
221222
app.setUpgradeStoreLoaders()
222-
app.setUpgradeHandlers()
223223

224224
if loadLatest {
225225
if err := app.LoadLatestVersion(); err != nil {
@@ -272,7 +272,7 @@ func (app *Quicksilver) DeliverTx(req abci.RequestDeliverTx) (res abci.ResponseD
272272
// InitChainer updates at chain initialization.
273273
func (app *Quicksilver) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain {
274274
var genesisState GenesisState
275-
if err := json.Unmarshal(req.AppStateBytes, &genesisState); err != nil {
275+
if err := tmjson.Unmarshal(req.AppStateBytes, &genesisState); err != nil {
276276
panic(err)
277277
}
278278
app.UpgradeKeeper.SetModuleVersionMap(ctx, app.mm.GetVersionMap())

app/keepers/keys.go

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ import (
99
authzkeeper "github.com/cosmos/cosmos-sdk/x/authz/keeper"
1010
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
1111
capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types"
12+
consensustypes "github.com/cosmos/cosmos-sdk/x/consensus/types"
13+
crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types"
1214
distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types"
1315
evidencetypes "github.com/cosmos/cosmos-sdk/x/evidence/types"
1416
"github.com/cosmos/cosmos-sdk/x/feegrant"
@@ -48,6 +50,9 @@ func KVStoreKeys() []string {
4850
capabilitytypes.StoreKey,
4951
feegrant.StoreKey,
5052
authzkeeper.StoreKey,
53+
consensustypes.StoreKey,
54+
crisistypes.StoreKey,
55+
5156
// ibc keys
5257
ibcexported.StoreKey,
5358
ibctransfertypes.StoreKey,

app/upgrades.go

+3
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ func (app *Quicksilver) setUpgradeHandlers() {
2828
}
2929
}
3030

31+
// TODO: add upgrade handler for consensus params (https://github.com/cosmos/cosmos-sdk/blob/v0.47.0-rc2/UPGRADING.md)
32+
// and ibc migrations
33+
3134
func (app *Quicksilver) setUpgradeStoreLoaders() {
3235
// When a planned update height is reached, the old binary will panic
3336
// writing on disk the height and name of the update that triggered it

cmd/quicksilverd/root.go

+17-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ import (
3434
tmcfg "github.com/cometbft/cometbft/config"
3535
tmcli "github.com/cometbft/cometbft/libs/cli"
3636
"github.com/cometbft/cometbft/libs/log"
37+
tmtypes "github.com/cometbft/cometbft/types"
3738

3839
"github.com/quicksilver-zone/quicksilver/app"
3940
quicksilverconfig "github.com/quicksilver-zone/quicksilver/cmd/config"
@@ -234,7 +235,20 @@ func (ac appCreator) newApp(
234235
panic(err)
235236
}
236237

237-
snapshotDir := filepath.Join(cast.ToString(appOpts.Get(flags.FlagHome)), "data", "snapshots")
238+
homeDir := cast.ToString(appOpts.Get(flags.FlagHome))
239+
chainID := cast.ToString(appOpts.Get(flags.FlagChainID))
240+
if chainID == "" {
241+
// fallback to genesis chain-id
242+
genDocFile := filepath.Join(homeDir, cast.ToString(appOpts.Get("genesis_file")))
243+
appGenesis, err := tmtypes.GenesisDocFromFile(genDocFile)
244+
if err != nil {
245+
panic(err)
246+
}
247+
248+
chainID = appGenesis.ChainID
249+
}
250+
251+
snapshotDir := filepath.Join(homeDir, "data", "snapshots")
238252
snapshotDB, err := dbm.NewDB("metadata", server.GetAppDBBackend(appOpts), snapshotDir)
239253
if err != nil {
240254
panic(err)
@@ -258,6 +272,7 @@ func (ac appCreator) newApp(
258272
false,
259273
cast.ToBool(appOpts.Get(FlagSupplyEnabled)),
260274
cast.ToString(appOpts.Get(FlagMetricsURL)),
275+
baseapp.SetChainID(chainID),
261276
baseapp.SetPruning(pruningOpts),
262277
baseapp.SetMinGasPrices(cast.ToString(appOpts.Get(server.FlagMinGasPrices))),
263278
baseapp.SetHaltHeight(cast.ToUint64(appOpts.Get(server.FlagHaltHeight))),
@@ -274,6 +289,7 @@ func addModuleInitFlags(startCmd *cobra.Command) {
274289
crisis.AddModuleInitFlags(startCmd)
275290
startCmd.Flags().Bool(FlagSupplyEnabled, false, "Enable supply module endpoint")
276291
startCmd.Flags().String(FlagMetricsURL, "", "Enable metrics sender")
292+
startCmd.Flags().String(flags.FlagChainID, "", "The network chain ID")
277293
}
278294

279295
func (ac appCreator) appExport(

0 commit comments

Comments
 (0)