refactor(mint): new go module (#18283)

This commit is contained in:
Marko
2023-10-28 07:09:48 +00:00
committed by GitHub
parent 21e69bad04
commit 7bef0227f9
84 changed files with 1652 additions and 82 deletions
+1 -1
View File
@@ -6,9 +6,9 @@ import (
"math/rand"
"cosmossdk.io/math"
"cosmossdk.io/x/mint/types"
"github.com/cosmos/cosmos-sdk/types/module"
"github.com/cosmos/cosmos-sdk/x/mint/types"
)
// Simulation parameter constants
+3 -3
View File
@@ -8,14 +8,14 @@ import (
"github.com/stretchr/testify/require"
"cosmossdk.io/math"
"cosmossdk.io/x/mint"
"cosmossdk.io/x/mint/simulation"
"cosmossdk.io/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"
moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil"
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
"github.com/cosmos/cosmos-sdk/x/mint"
"github.com/cosmos/cosmos-sdk/x/mint/simulation"
"github.com/cosmos/cosmos-sdk/x/mint/types"
)
// TestRandomizedGenState tests the normal scenario of applying RandomizedGenState.
+1 -1
View File
@@ -4,11 +4,11 @@ import (
"math/rand"
sdkmath "cosmossdk.io/math"
"cosmossdk.io/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/address"
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
"github.com/cosmos/cosmos-sdk/x/mint/types"
"github.com/cosmos/cosmos-sdk/x/simulation"
)
+2 -2
View File
@@ -7,12 +7,12 @@ import (
"gotest.tools/v3/assert"
sdkmath "cosmossdk.io/math"
"cosmossdk.io/x/mint/simulation"
"cosmossdk.io/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/address"
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
"github.com/cosmos/cosmos-sdk/x/mint/simulation"
"github.com/cosmos/cosmos-sdk/x/mint/types"
)
func TestProposalMsgs(t *testing.T) {