From 0809c77842a4765ba214c7984f3e62d004ecc050 Mon Sep 17 00:00:00 2001 From: Marko Date: Tue, 29 Nov 2022 23:40:14 +0000 Subject: [PATCH] refactor: move snapshotstore under store (#14048) * Move snapshotstore under store * add changelog entry * fix build * move snapshot proto package * make proto-gen * Update CHANGELOG.md Co-authored-by: Aleksandr Bezobchuk Co-authored-by: Aleksandr Bezobchuk --- simd/cmd/root.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/simd/cmd/root.go b/simd/cmd/root.go index f10494301d1d..f46f0d6fa055 100644 --- a/simd/cmd/root.go +++ b/simd/cmd/root.go @@ -1,12 +1,13 @@ package cmd import ( - rosettaCmd "cosmossdk.io/tools/rosetta/cmd" "errors" "io" "os" "path/filepath" + rosettaCmd "cosmossdk.io/tools/rosetta/cmd" + "github.com/spf13/cast" "github.com/spf13/cobra" "github.com/spf13/viper" @@ -28,9 +29,9 @@ import ( "github.com/cosmos/cosmos-sdk/server" serverconfig "github.com/cosmos/cosmos-sdk/server/config" servertypes "github.com/cosmos/cosmos-sdk/server/types" - "github.com/cosmos/cosmos-sdk/snapshots" - snapshottypes "github.com/cosmos/cosmos-sdk/snapshots/types" "github.com/cosmos/cosmos-sdk/store" + "github.com/cosmos/cosmos-sdk/store/snapshots" + snapshottypes "github.com/cosmos/cosmos-sdk/store/snapshots/types" simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" sdk "github.com/cosmos/cosmos-sdk/types" authcmd "github.com/cosmos/cosmos-sdk/x/auth/client/cli"