refactor: create go.mod for store (#14746)

Co-authored-by: Marko <marbar3778@yahoo.com>
This commit is contained in:
Likhita Polavarapu
2023-01-25 13:31:56 +00:00
committed by GitHub
co-authored by Marko
parent 5d25d5f40a
commit 7559d9ecd3
325 changed files with 1627 additions and 639 deletions
+3 -2
View File
@@ -3,9 +3,10 @@ package query
import (
"fmt"
"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/store/types"
"cosmossdk.io/store/types"
proto "github.com/cosmos/gogoproto/proto"
"github.com/cosmos/cosmos-sdk/codec"
)
// FilteredPaginate does pagination of all the results in the PrefixStore based on the
+3 -2
View File
@@ -4,9 +4,10 @@ import (
"fmt"
"cosmossdk.io/math"
"cosmossdk.io/store/prefix"
storetypes "cosmossdk.io/store/types"
"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/store/prefix"
storetypes "github.com/cosmos/cosmos-sdk/store/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/address"
"github.com/cosmos/cosmos-sdk/types/query"
+3 -2
View File
@@ -5,9 +5,10 @@ import (
"testing"
"cosmossdk.io/math"
"github.com/google/gofuzz"
fuzz "github.com/google/gofuzz"
"cosmossdk.io/store/prefix"
"github.com/cosmos/cosmos-sdk/store/prefix"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/address"
"github.com/cosmos/cosmos-sdk/types/query"
+1 -1
View File
@@ -8,7 +8,7 @@ import (
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"github.com/cosmos/cosmos-sdk/store/types"
"cosmossdk.io/store/types"
)
// DefaultPage is the default `page` number for queries.
+2 -1
View File
@@ -9,12 +9,13 @@ import (
"github.com/stretchr/testify/suite"
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
"cosmossdk.io/store/prefix"
"github.com/cosmos/cosmos-sdk/baseapp"
"github.com/cosmos/cosmos-sdk/codec"
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
"github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1"
"github.com/cosmos/cosmos-sdk/runtime"
"github.com/cosmos/cosmos-sdk/store/prefix"
"github.com/cosmos/cosmos-sdk/testutil/configurator"
testutilsims "github.com/cosmos/cosmos-sdk/testutil/sims"
sdk "github.com/cosmos/cosmos-sdk/types"