Skip to content

Commit

Permalink
build passing
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Hanna committed Sep 9, 2024
1 parent 2ceb684 commit 804b3b2
Show file tree
Hide file tree
Showing 196 changed files with 25,615 additions and 182 deletions.
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ import (
"github.com/atomone-hub/atomone/x/auth/ante"
authtx "github.com/atomone-hub/atomone/x/auth/tx"
authtypes "github.com/atomone-hub/atomone/x/auth/types"
"github.com/atomone-hub/atomone/x/crisis"
upgradetypes "github.com/atomone-hub/atomone/x/upgrade/types"
"github.com/cosmos/cosmos-sdk/version"
"github.com/cosmos/cosmos-sdk/x/crisis"

atomoneante "github.com/atomone-hub/atomone/ante"
"github.com/atomone-hub/atomone/app/keepers"
Expand Down
10 changes: 5 additions & 5 deletions app/keepers/keepers.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ import (
upgradekeeper "github.com/atomone-hub/atomone/x/upgrade/keeper"
upgradetypes "github.com/atomone-hub/atomone/x/upgrade/types"

//capabilitykeeper "github.com/cosmos/cosmos-sdk/x/capability/keeper"
//capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types"
//consensusparamkeeper "github.com/cosmos/cosmos-sdk/x/consensus/keeper"
//crisiskeeper "github.com/cosmos/cosmos-sdk/x/crisis/keeper"
//capabilitykeeper "github.com/atomone-hub/atomone/x/capability/keeper"
//capabilitytypes "github.com/atomone-hub/atomone/x/capability/types"
//consensusparamkeeper "github.com/atomone-hub/atomone/x/consensus/keeper"
//crisiskeeper "github.com/atomone-hub/atomone/x/crisis/keeper"

paramskeeper "github.com/atomone-hub/atomone/x/params/keeper"
paramstypes "github.com/atomone-hub/atomone/x/params/types"
paramproposal "github.com/atomone-hub/atomone/x/params/types/proposal"

//slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper"
//slashingkeeper "github.com/atomone-hub/atomone/x/slashing/keeper"

govkeeper "github.com/atomone-hub/atomone/x/gov/keeper"
govtypes "github.com/atomone-hub/atomone/x/gov/types"
Expand Down
2 changes: 1 addition & 1 deletion app/keepers/keys.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import (
authtypes "github.com/atomone-hub/atomone/x/auth/types"
authzkeeper "github.com/atomone-hub/atomone/x/authz/keeper"
banktypes "github.com/atomone-hub/atomone/x/bank/types"
capabilitytypes "github.com/atomone-hub/atomone/x/capability/types"
consensusparamtypes "github.com/atomone-hub/atomone/x/consensus/types"
crisistypes "github.com/atomone-hub/atomone/x/crisis/types"
distrtypes "github.com/atomone-hub/atomone/x/distribution/types"
Expand All @@ -16,7 +17,6 @@ import (
slashingtypes "github.com/atomone-hub/atomone/x/slashing/types"
stakingtypes "github.com/atomone-hub/atomone/x/staking/types"
upgradetypes "github.com/atomone-hub/atomone/x/upgrade/types"
capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types"

govtypes "github.com/atomone-hub/atomone/x/gov/types"
)
Expand Down
12 changes: 6 additions & 6 deletions app/modules.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ import (
upgradeclient "github.com/atomone-hub/atomone/x/upgrade/client"
upgradetypes "github.com/atomone-hub/atomone/x/upgrade/types"

//"github.com/cosmos/cosmos-sdk/x/capability"
capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types"
//"github.com/cosmos/cosmos-sdk/x/consensus"
//"github.com/cosmos/cosmos-sdk/x/crisis"
//"github.com/cosmos/cosmos-sdk/x/evidence"
//"github.com/atomone-hub/atomone/x/capability"
capabilitytypes "github.com/atomone-hub/atomone/x/capability/types"
//"github.com/atomone-hub/atomone/x/consensus"
//"github.com/atomone-hub/atomone/x/crisis"
//"github.com/atomone-hub/atomone/x/evidence"
sdkparams "github.com/atomone-hub/atomone/x/params"
paramsclient "github.com/atomone-hub/atomone/x/params/client"

//"github.com/cosmos/cosmos-sdk/x/slashing"
//"github.com/atomone-hub/atomone/x/slashing"

atomoneappparams "github.com/atomone-hub/atomone/app/params"
"github.com/atomone-hub/atomone/x/gov"
Expand Down
2 changes: 1 addition & 1 deletion baseapp/utils_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ import (
authtypes "github.com/atomone-hub/atomone/x/auth/types"
_ "github.com/atomone-hub/atomone/x/bank"
banktypes "github.com/atomone-hub/atomone/x/bank/types"
_ "github.com/atomone-hub/atomone/x/consensus"
_ "github.com/atomone-hub/atomone/x/mint"
minttypes "github.com/atomone-hub/atomone/x/mint/types"
_ "github.com/atomone-hub/atomone/x/params"
_ "github.com/atomone-hub/atomone/x/staking"
stakingtypes "github.com/atomone-hub/atomone/x/staking/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
_ "github.com/cosmos/cosmos-sdk/x/consensus"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion cmd/atomoned/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ import (
authcmd "github.com/atomone-hub/atomone/x/auth/client/cli"
"github.com/atomone-hub/atomone/x/auth/types"
banktypes "github.com/atomone-hub/atomone/x/bank/types"
"github.com/atomone-hub/atomone/x/crisis"
genutilcli "github.com/atomone-hub/atomone/x/genutil/client/cli"
"github.com/cosmos/cosmos-sdk/snapshots"
snapshottypes "github.com/cosmos/cosmos-sdk/snapshots/types"
"github.com/cosmos/cosmos-sdk/x/crisis"

atomone "github.com/atomone-hub/atomone/app"
"github.com/atomone-hub/atomone/app/params"
Expand Down
68 changes: 34 additions & 34 deletions simapp/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,23 @@ import (
"github.com/cometbft/cometbft/libs/log"
"github.com/spf13/cast"

simappparams "cosmossdk.io/simapp/params"
simappparams "github.com/atomone-hub/atomone/simapp/params"

"github.com/atomone-hub/atomone/baseapp"
"github.com/atomone-hub/atomone/client"
"github.com/atomone-hub/atomone/client/flags"
nodeservice "github.com/atomone-hub/atomone/client/grpc/node"
"github.com/atomone-hub/atomone/client/grpc/tmservice"
"github.com/atomone-hub/atomone/codec"
"github.com/atomone-hub/atomone/codec/types"
"github.com/atomone-hub/atomone/runtime"
"github.com/atomone-hub/atomone/server"
"github.com/atomone-hub/atomone/server/api"
"github.com/atomone-hub/atomone/server/config"
servertypes "github.com/atomone-hub/atomone/server/types"
"github.com/atomone-hub/atomone/store/streaming"
storetypes "github.com/atomone-hub/atomone/store/types"
testdata_pulsar "github.com/atomone-hub/atomone/testutil/testdata/testpb"
sdk "github.com/atomone-hub/atomone/types"
"github.com/atomone-hub/atomone/types/module"
"github.com/atomone-hub/atomone/x/auth"
Expand All @@ -36,11 +49,21 @@ import (
"github.com/atomone-hub/atomone/x/bank"
bankkeeper "github.com/atomone-hub/atomone/x/bank/keeper"
banktypes "github.com/atomone-hub/atomone/x/bank/types"
"github.com/atomone-hub/atomone/x/capability"
capabilitykeeper "github.com/atomone-hub/atomone/x/capability/keeper"
capabilitytypes "github.com/atomone-hub/atomone/x/capability/types"
consensus "github.com/atomone-hub/atomone/x/consensus"
consensusparamkeeper "github.com/atomone-hub/atomone/x/consensus/keeper"
consensusparamtypes "github.com/atomone-hub/atomone/x/consensus/types"
"github.com/atomone-hub/atomone/x/crisis"
crisiskeeper "github.com/atomone-hub/atomone/x/crisis/keeper"
crisistypes "github.com/atomone-hub/atomone/x/crisis/types"
distr "github.com/atomone-hub/atomone/x/distribution"
distrkeeper "github.com/atomone-hub/atomone/x/distribution/keeper"
distrtypes "github.com/atomone-hub/atomone/x/distribution/types"
"github.com/atomone-hub/atomone/x/evidence"
evidencekeeper "github.com/atomone-hub/atomone/x/evidence/keeper"
evidencetypes "github.com/atomone-hub/atomone/x/evidence/types"
"github.com/atomone-hub/atomone/x/feegrant"
feegrantkeeper "github.com/atomone-hub/atomone/x/feegrant/keeper"
feegrantmodule "github.com/atomone-hub/atomone/x/feegrant/module"
Expand All @@ -57,50 +80,27 @@ import (
"github.com/atomone-hub/atomone/x/mint"
mintkeeper "github.com/atomone-hub/atomone/x/mint/keeper"
minttypes "github.com/atomone-hub/atomone/x/mint/types"
"github.com/atomone-hub/atomone/x/nft"
nftkeeper "github.com/atomone-hub/atomone/x/nft/keeper"
nftmodule "github.com/atomone-hub/atomone/x/nft/module"
"github.com/atomone-hub/atomone/x/params"
paramsclient "github.com/atomone-hub/atomone/x/params/client"
paramskeeper "github.com/atomone-hub/atomone/x/params/keeper"
paramstypes "github.com/atomone-hub/atomone/x/params/types"
paramproposal "github.com/atomone-hub/atomone/x/params/types/proposal"
"github.com/atomone-hub/atomone/x/slashing"
slashingkeeper "github.com/atomone-hub/atomone/x/slashing/keeper"
slashingtypes "github.com/atomone-hub/atomone/x/slashing/types"
"github.com/atomone-hub/atomone/x/staking"
stakingkeeper "github.com/atomone-hub/atomone/x/staking/keeper"
stakingtypes "github.com/atomone-hub/atomone/x/staking/types"
"github.com/atomone-hub/atomone/x/upgrade"
upgradeclient "github.com/atomone-hub/atomone/x/upgrade/client"
upgradekeeper "github.com/atomone-hub/atomone/x/upgrade/keeper"
upgradetypes "github.com/atomone-hub/atomone/x/upgrade/types"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/flags"
nodeservice "github.com/cosmos/cosmos-sdk/client/grpc/node"
"github.com/cosmos/cosmos-sdk/client/grpc/tmservice"
"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/codec/types"
"github.com/cosmos/cosmos-sdk/runtime"
runtimeservices "github.com/cosmos/cosmos-sdk/runtime/services"
"github.com/cosmos/cosmos-sdk/server"
"github.com/cosmos/cosmos-sdk/server/api"
"github.com/cosmos/cosmos-sdk/server/config"
servertypes "github.com/cosmos/cosmos-sdk/server/types"
"github.com/cosmos/cosmos-sdk/std"
"github.com/cosmos/cosmos-sdk/store/streaming"
testdata_pulsar "github.com/cosmos/cosmos-sdk/testutil/testdata/testpb"
"github.com/cosmos/cosmos-sdk/version"
"github.com/cosmos/cosmos-sdk/x/capability"
capabilitykeeper "github.com/cosmos/cosmos-sdk/x/capability/keeper"
capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types"
consensus "github.com/cosmos/cosmos-sdk/x/consensus"
consensusparamkeeper "github.com/cosmos/cosmos-sdk/x/consensus/keeper"
"github.com/cosmos/cosmos-sdk/x/crisis"
crisiskeeper "github.com/cosmos/cosmos-sdk/x/crisis/keeper"
"github.com/cosmos/cosmos-sdk/x/evidence"
evidencekeeper "github.com/cosmos/cosmos-sdk/x/evidence/keeper"
evidencetypes "github.com/cosmos/cosmos-sdk/x/evidence/types"
"github.com/cosmos/cosmos-sdk/x/nft"
nftkeeper "github.com/cosmos/cosmos-sdk/x/nft/keeper"
nftmodule "github.com/cosmos/cosmos-sdk/x/nft/module"
"github.com/cosmos/cosmos-sdk/x/slashing"
slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper"
"github.com/cosmos/cosmos-sdk/x/staking"
stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper"
"github.com/cosmos/cosmos-sdk/x/upgrade"
upgradeclient "github.com/cosmos/cosmos-sdk/x/upgrade/client"
upgradekeeper "github.com/cosmos/cosmos-sdk/x/upgrade/keeper"
)

const appName = "SimApp"
Expand Down
6 changes: 3 additions & 3 deletions simapp/app_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@ import (
vestingtypes "github.com/atomone-hub/atomone/x/auth/vesting/types"
"github.com/atomone-hub/atomone/x/authz"
banktypes "github.com/atomone-hub/atomone/x/bank/types"
capabilitytypes "github.com/atomone-hub/atomone/x/capability/types"
consensustypes "github.com/atomone-hub/atomone/x/consensus/types"
crisistypes "github.com/atomone-hub/atomone/x/crisis/types"
distrtypes "github.com/atomone-hub/atomone/x/distribution/types"
evidencetypes "github.com/atomone-hub/atomone/x/evidence/types"
"github.com/atomone-hub/atomone/x/feegrant"
genutiltypes "github.com/atomone-hub/atomone/x/genutil/types"
govtypes "github.com/atomone-hub/atomone/x/gov/types"
"github.com/atomone-hub/atomone/x/group"
minttypes "github.com/atomone-hub/atomone/x/mint/types"
"github.com/atomone-hub/atomone/x/nft"
paramstypes "github.com/atomone-hub/atomone/x/params/types"
slashingtypes "github.com/atomone-hub/atomone/x/slashing/types"
stakingtypes "github.com/atomone-hub/atomone/x/staking/types"
upgradetypes "github.com/atomone-hub/atomone/x/upgrade/types"
capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types"
evidencetypes "github.com/cosmos/cosmos-sdk/x/evidence/types"
"github.com/cosmos/cosmos-sdk/x/nft"
)

var (
Expand Down
16 changes: 8 additions & 8 deletions simapp/app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,28 +14,28 @@ import (
"github.com/stretchr/testify/require"

"github.com/atomone-hub/atomone/baseapp"
"github.com/atomone-hub/atomone/testutil/mock"
simtestutil "github.com/atomone-hub/atomone/testutil/sims"
sdk "github.com/atomone-hub/atomone/types"
"github.com/atomone-hub/atomone/types/module"
"github.com/atomone-hub/atomone/x/auth"
"github.com/atomone-hub/atomone/x/auth/vesting"
authzmodule "github.com/atomone-hub/atomone/x/authz/module"
"github.com/atomone-hub/atomone/x/bank"
banktypes "github.com/atomone-hub/atomone/x/bank/types"
"github.com/atomone-hub/atomone/x/capability"
"github.com/atomone-hub/atomone/x/crisis"
"github.com/atomone-hub/atomone/x/distribution"
"github.com/atomone-hub/atomone/x/evidence"
feegrantmodule "github.com/atomone-hub/atomone/x/feegrant/module"
"github.com/atomone-hub/atomone/x/genutil"
"github.com/atomone-hub/atomone/x/gov"
group "github.com/atomone-hub/atomone/x/group/module"
"github.com/atomone-hub/atomone/x/mint"
"github.com/atomone-hub/atomone/x/params"
"github.com/cosmos/cosmos-sdk/testutil/mock"
simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims"
"github.com/cosmos/cosmos-sdk/x/capability"
"github.com/cosmos/cosmos-sdk/x/crisis"
"github.com/cosmos/cosmos-sdk/x/evidence"
"github.com/cosmos/cosmos-sdk/x/slashing"
"github.com/cosmos/cosmos-sdk/x/staking"
"github.com/cosmos/cosmos-sdk/x/upgrade"
"github.com/atomone-hub/atomone/x/slashing"
"github.com/atomone-hub/atomone/x/staking"
"github.com/atomone-hub/atomone/x/upgrade"
)

func TestSimAppExportAndBlockedAddrs(t *testing.T) {
Expand Down
54 changes: 27 additions & 27 deletions simapp/app_v2.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,17 @@ import (
"cosmossdk.io/depinject"

"github.com/atomone-hub/atomone/baseapp"
"github.com/atomone-hub/atomone/client"
"github.com/atomone-hub/atomone/codec"
codectypes "github.com/atomone-hub/atomone/codec/types"
"github.com/atomone-hub/atomone/runtime"
"github.com/atomone-hub/atomone/server"
"github.com/atomone-hub/atomone/server/api"
"github.com/atomone-hub/atomone/server/config"
servertypes "github.com/atomone-hub/atomone/server/types"
"github.com/atomone-hub/atomone/store/streaming"
storetypes "github.com/atomone-hub/atomone/store/types"
testdata_pulsar "github.com/atomone-hub/atomone/testutil/testdata/testpb"
"github.com/atomone-hub/atomone/types/module"
"github.com/atomone-hub/atomone/x/auth"
authkeeper "github.com/atomone-hub/atomone/x/auth/keeper"
Expand All @@ -26,8 +36,16 @@ import (
authzmodule "github.com/atomone-hub/atomone/x/authz/module"
"github.com/atomone-hub/atomone/x/bank"
bankkeeper "github.com/atomone-hub/atomone/x/bank/keeper"
"github.com/atomone-hub/atomone/x/capability"
capabilitykeeper "github.com/atomone-hub/atomone/x/capability/keeper"
consensus "github.com/atomone-hub/atomone/x/consensus"
consensuskeeper "github.com/atomone-hub/atomone/x/consensus/keeper"
"github.com/atomone-hub/atomone/x/crisis"
crisiskeeper "github.com/atomone-hub/atomone/x/crisis/keeper"
distr "github.com/atomone-hub/atomone/x/distribution"
distrkeeper "github.com/atomone-hub/atomone/x/distribution/keeper"
"github.com/atomone-hub/atomone/x/evidence"
evidencekeeper "github.com/atomone-hub/atomone/x/evidence/keeper"
feegrantkeeper "github.com/atomone-hub/atomone/x/feegrant/keeper"
feegrantmodule "github.com/atomone-hub/atomone/x/feegrant/module"
"github.com/atomone-hub/atomone/x/genutil"
Expand All @@ -39,37 +57,19 @@ import (
groupmodule "github.com/atomone-hub/atomone/x/group/module"
"github.com/atomone-hub/atomone/x/mint"
mintkeeper "github.com/atomone-hub/atomone/x/mint/keeper"
nftkeeper "github.com/atomone-hub/atomone/x/nft/keeper"
nftmodule "github.com/atomone-hub/atomone/x/nft/module"
"github.com/atomone-hub/atomone/x/params"
paramsclient "github.com/atomone-hub/atomone/x/params/client"
paramskeeper "github.com/atomone-hub/atomone/x/params/keeper"
paramstypes "github.com/atomone-hub/atomone/x/params/types"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/codec"
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
"github.com/cosmos/cosmos-sdk/runtime"
"github.com/cosmos/cosmos-sdk/server"
"github.com/cosmos/cosmos-sdk/server/api"
"github.com/cosmos/cosmos-sdk/server/config"
servertypes "github.com/cosmos/cosmos-sdk/server/types"
"github.com/cosmos/cosmos-sdk/store/streaming"
testdata_pulsar "github.com/cosmos/cosmos-sdk/testutil/testdata/testpb"
"github.com/cosmos/cosmos-sdk/x/capability"
capabilitykeeper "github.com/cosmos/cosmos-sdk/x/capability/keeper"
consensus "github.com/cosmos/cosmos-sdk/x/consensus"
consensuskeeper "github.com/cosmos/cosmos-sdk/x/consensus/keeper"
"github.com/cosmos/cosmos-sdk/x/crisis"
crisiskeeper "github.com/cosmos/cosmos-sdk/x/crisis/keeper"
"github.com/cosmos/cosmos-sdk/x/evidence"
evidencekeeper "github.com/cosmos/cosmos-sdk/x/evidence/keeper"
nftkeeper "github.com/cosmos/cosmos-sdk/x/nft/keeper"
nftmodule "github.com/cosmos/cosmos-sdk/x/nft/module"
"github.com/cosmos/cosmos-sdk/x/slashing"
slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper"
"github.com/cosmos/cosmos-sdk/x/staking"
stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper"
"github.com/cosmos/cosmos-sdk/x/upgrade"
upgradeclient "github.com/cosmos/cosmos-sdk/x/upgrade/client"
upgradekeeper "github.com/cosmos/cosmos-sdk/x/upgrade/keeper"
"github.com/atomone-hub/atomone/x/slashing"
slashingkeeper "github.com/atomone-hub/atomone/x/slashing/keeper"
"github.com/atomone-hub/atomone/x/staking"
stakingkeeper "github.com/atomone-hub/atomone/x/staking/keeper"
"github.com/atomone-hub/atomone/x/upgrade"
upgradeclient "github.com/atomone-hub/atomone/x/upgrade/client"
upgradekeeper "github.com/atomone-hub/atomone/x/upgrade/keeper"
)

var (
Expand Down
4 changes: 2 additions & 2 deletions simapp/export.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ import (

tmproto "github.com/cometbft/cometbft/proto/tendermint/types"

servertypes "github.com/atomone-hub/atomone/server/types"
sdk "github.com/atomone-hub/atomone/types"
slashingtypes "github.com/atomone-hub/atomone/x/slashing/types"
"github.com/atomone-hub/atomone/x/staking"
stakingtypes "github.com/atomone-hub/atomone/x/staking/types"
servertypes "github.com/cosmos/cosmos-sdk/server/types"
"github.com/cosmos/cosmos-sdk/x/staking"
)

// ExportAppStateAndValidators exports the state of the application for a genesis
Expand Down
4 changes: 2 additions & 2 deletions simapp/genesis_account_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import (
"testing"
"time"

"cosmossdk.io/simapp"
"github.com/atomone-hub/atomone/crypto/keys/secp256k1"
"github.com/atomone-hub/atomone/simapp"
sdk "github.com/atomone-hub/atomone/types"
authtypes "github.com/atomone-hub/atomone/x/auth/types"
"github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1"

"github.com/cometbft/cometbft/crypto"
"github.com/stretchr/testify/require"
Expand Down
4 changes: 2 additions & 2 deletions simapp/params/amino.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
package params

import (
"github.com/atomone-hub/atomone/codec"
"github.com/atomone-hub/atomone/codec/types"
"github.com/atomone-hub/atomone/x/auth/migrations/legacytx"
"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/codec/types"
)

// MakeTestEncodingConfig creates an EncodingConfig for an amino based test configuration.
Expand Down
Loading

0 comments on commit 804b3b2

Please sign in to comment.