Skip to content

Commit

Permalink
Merge pull request CosmosContracts#313 from CosmosContracts/wasmd_029
Browse files Browse the repository at this point in the history
Juno v11 for Uni testing
  • Loading branch information
faddat authored Oct 11, 2022
2 parents 1e03aae + a0f596f commit 201336e
Show file tree
Hide file tree
Showing 29 changed files with 61 additions and 55 deletions.
17 changes: 7 additions & 10 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ import (
tmos "github.com/tendermint/tendermint/libs/os"
dbm "github.com/tendermint/tm-db"

"github.com/CosmosContracts/juno/v10/docs"
"github.com/CosmosContracts/juno/v10/x/mint"
mintkeeper "github.com/CosmosContracts/juno/v10/x/mint/keeper"
minttypes "github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/docs"
"github.com/CosmosContracts/juno/v11/x/mint"
mintkeeper "github.com/CosmosContracts/juno/v11/x/mint/keeper"
minttypes "github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/cosmos/cosmos-sdk/baseapp"
"github.com/cosmos/cosmos-sdk/client/grpc/tmservice"
"github.com/cosmos/cosmos-sdk/client/rpc"
Expand Down Expand Up @@ -108,7 +108,8 @@ import (
icahosttypes "github.com/cosmos/ibc-go/v3/modules/apps/27-interchain-accounts/host/types"
icatypes "github.com/cosmos/ibc-go/v3/modules/apps/27-interchain-accounts/types"

encparams "github.com/CosmosContracts/juno/v10/app/params"
encparams "github.com/CosmosContracts/juno/v11/app/params"
upgrades "github.com/CosmosContracts/juno/v11/app/upgrades"
)

const (
Expand Down Expand Up @@ -840,11 +841,7 @@ func (app *App) RegisterTendermintService(clientCtx client.Context) {
// RegisterUpgradeHandlers returns upgrade handlers

func (app *App) RegisterUpgradeHandlers(cfg module.Configurator) {
app.UpgradeKeeper.SetUpgradeHandler("v10",
func(ctx sdk.Context, _ upgradetypes.Plan, fromVM module.VersionMap) (module.VersionMap, error) {
// transfer module consensus version has been bumped to 2
return app.mm.RunMigrations(ctx, cfg, fromVM)
})
app.UpgradeKeeper.SetUpgradeHandler("v11", upgrades.CreateV11UpgradeHandler(app.mm, cfg, &app.ICAHostKeeper))
}

// GetMaccPerms returns a copy of the module account permissions
Expand Down
2 changes: 1 addition & 1 deletion app/encoding.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package app

import (
"github.com/CosmosContracts/juno/v10/app/params"
"github.com/CosmosContracts/juno/v11/app/params"

"github.com/cosmos/cosmos-sdk/std"
)
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/upgrade_handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ func CreateV11UpgradeHandler(mm *module.Manager, cfg module.Configurator, icahos
sdk.MsgTypeURL(&authz.MsgGrant{}),
sdk.MsgTypeURL(&authz.MsgRevoke{}),
// wasm msgs here
// note we only support three atm
// note we only support three atm (well four inc instantiate2)
sdk.MsgTypeURL(&wasmtypes.MsgStoreCode{}),
sdk.MsgTypeURL(&wasmtypes.MsgInstantiateContract{}),
sdk.MsgTypeURL(&wasmtypes.MsgInstantiateContract2{}), // added in wasmd 0.29.0
Expand Down
2 changes: 1 addition & 1 deletion cmd/junod/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
"os"

"github.com/CosmosContracts/juno/v10/app"
"github.com/CosmosContracts/juno/v11/app"
"github.com/cosmos/cosmos-sdk/server"

svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"
Expand Down
4 changes: 2 additions & 2 deletions cmd/junod/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ import (
"github.com/CosmWasm/wasmd/x/wasm"
wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper"
wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types"
"github.com/CosmosContracts/juno/v10/app"
"github.com/CosmosContracts/juno/v10/app/params"
"github.com/CosmosContracts/juno/v11/app"
"github.com/CosmosContracts/juno/v11/app/params"
)

// NewRootCmd creates a new root command for junod. It is called once in the
Expand Down
8 changes: 5 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module github.com/CosmosContracts/juno/v10
module github.com/CosmosContracts/juno/v11

go 1.18

require (
github.com/CosmWasm/wasmd v0.29.0-rc2
github.com/CosmWasm/wasmd v0.29.0
github.com/cosmos/cosmos-sdk v0.45.8
github.com/cosmos/ibc-go/v3 v3.3.0
github.com/gogo/protobuf v1.3.3
Expand All @@ -18,7 +18,7 @@ require (
github.com/tendermint/tendermint v0.34.21
github.com/tendermint/tm-db v0.6.7
google.golang.org/genproto v0.0.0-20220725144611-272f38e5d71b
google.golang.org/grpc v1.48.0
google.golang.org/grpc v1.49.0
gopkg.in/yaml.v2 v2.4.0
)

Expand All @@ -38,7 +38,9 @@ require (
github.com/coinbase/rosetta-sdk-go v0.7.0 // indirect
github.com/confio/ics23/go v0.7.0 // indirect
github.com/cosmos/btcutil v1.0.4 // indirect
github.com/cosmos/cosmos-proto v1.0.0-alpha7 // indirect
github.com/cosmos/go-bip39 v1.0.0 // indirect
github.com/cosmos/gogoproto v1.4.2 // indirect
github.com/cosmos/gorocksdb v1.2.0 // indirect
github.com/cosmos/iavl v0.19.1 // indirect
github.com/cosmos/ledger-cosmos-go v0.11.1 // indirect
Expand Down
11 changes: 9 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03
github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d h1:nalkkPQcITbvhmL4+C4cKA87NW0tfm3Kl9VXRoPywFg=
github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d/go.mod h1:URdX5+vg25ts3aCh8H5IFZybJYKWhJHYMTnf+ULtoC4=
github.com/CosmWasm/wasmd v0.29.0-rc2 h1:fVDze+hS7S+eUsmeAOiqQjolKZ2q2byrnbsIk0Anl4k=
github.com/CosmWasm/wasmd v0.29.0-rc2/go.mod h1:eRrfjYNj8/PhyA2wdIuHeR/Czjy9/1UGuIr0NJocleA=
github.com/CosmWasm/wasmd v0.29.0 h1:jXD2/QLFMfbudanM7XFPPu/UOKL+Fv3fXnRZZkLw5NI=
github.com/CosmWasm/wasmd v0.29.0/go.mod h1:KgoXNcGNHCXB5NvmyTB/wdfo4OZr/hKSZkhR5jkoVoE=
github.com/CosmWasm/wasmvm v1.1.1 h1:0xtdrmmsP9fibe+x42WcMkp5aQ738BICgcH3FNVLzm4=
github.com/CosmWasm/wasmvm v1.1.1/go.mod h1:ei0xpvomwSdONsxDuONzV7bL1jSET1M8brEx0FCXc+A=
github.com/DataDog/datadog-go v3.2.0+incompatible/go.mod h1:LButxg5PwREeZtORoXG3tL4fMGNddJ+vMq1mwgfaqoQ=
Expand Down Expand Up @@ -164,11 +164,15 @@ github.com/coreos/go-systemd/v22 v22.3.3-0.20220203105225-a9a7ef127534/go.mod h1
github.com/coreos/pkg v0.0.0-20160727233714-3ac0863d7acf/go.mod h1:E3G3o1h8I7cfcXa63jLwjI0eiQQMgzzUDFVpN/nH/eA=
github.com/cosmos/btcutil v1.0.4 h1:n7C2ngKXo7UC9gNyMNLbzqz7Asuf+7Qv4gnX/rOdQ44=
github.com/cosmos/btcutil v1.0.4/go.mod h1:Ffqc8Hn6TJUdDgHBwIZLtrLQC1KdJ9jGJl/TvgUaxbU=
github.com/cosmos/cosmos-proto v1.0.0-alpha7 h1:yqYUOHF2jopwZh4dVQp3xgqwftE5/2hkrwIV6vkUbO0=
github.com/cosmos/cosmos-proto v1.0.0-alpha7/go.mod h1:dosO4pSAbJF8zWCzCoTWP7nNsjcvSUBQmniFxDg5daw=
github.com/cosmos/cosmos-sdk v0.45.8 h1:UHO5LTkOYLK1pvu9WELCxnp8zw/YcjoNGqqcYiLQ4pE=
github.com/cosmos/cosmos-sdk v0.45.8/go.mod h1:+OKZMhLj+Y6LCzCDsyIvpul/xk7n9lVUn8sikLWD0Jo=
github.com/cosmos/go-bip39 v0.0.0-20180819234021-555e2067c45d/go.mod h1:tSxLoYXyBmiFeKpvmq4dzayMdCjCnu8uqmCysIGBT2Y=
github.com/cosmos/go-bip39 v1.0.0 h1:pcomnQdrdH22njcAatO0yWojsUnCO3y2tNoV1cb6hHY=
github.com/cosmos/go-bip39 v1.0.0/go.mod h1:RNJv0H/pOIVgxw6KS7QeX2a0Uo0aKUlfhZ4xuwvCdJw=
github.com/cosmos/gogoproto v1.4.2 h1:UeGRcmFW41l0G0MiefWhkPEVEwvu78SZsHBvI78dAYw=
github.com/cosmos/gogoproto v1.4.2/go.mod h1:cLxOsn1ljAHSV527CHOtaIP91kK6cCrZETRBrkzItWU=
github.com/cosmos/gorocksdb v1.2.0 h1:d0l3jJG8M4hBouIZq0mDUHZ+zjOx044J3nGRskwTb4Y=
github.com/cosmos/gorocksdb v1.2.0/go.mod h1:aaKvKItm514hKfNJpUJXnnOWeBnk2GL4+Qw9NHizILw=
github.com/cosmos/iavl v0.19.1 h1:3gaq9b6SjiB0KBTygRnAvEGml2pQlu1TH8uma5g63Ys=
Expand Down Expand Up @@ -343,6 +347,7 @@ github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/
github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/google/go-cmp v0.5.8 h1:e6P7q2lk1O+qJJb4BtCQXlK8vWEO8V1ZeuEdJNOqZyg=
github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf/go.mod h1:HP5RmnzzSNb993RKQDq4+1A4ia9nllfqcQFTQJedwGI=
github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
Expand Down Expand Up @@ -1174,6 +1179,7 @@ google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGj
google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w=
google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
Expand Down Expand Up @@ -1219,6 +1225,7 @@ honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9
honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
nhooyr.io/websocket v1.8.6 h1:s+C3xAMLwGmlI31Nyn/eAehUlZPwfYZu2JXM621Q5/k=
nhooyr.io/websocket v1.8.6/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0=
pgregory.net/rapid v0.4.7/go.mod h1:UYpPVyjFHzYBGHIxLFoupi8vwk6rXNzRY9OMvVxFIOU=
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
Expand Down
4 changes: 2 additions & 2 deletions x/mint/abci.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package mint
import (
"time"

"github.com/CosmosContracts/juno/v10/x/mint/keeper"
"github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/x/mint/keeper"
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/cosmos/cosmos-sdk/telemetry"
sdk "github.com/cosmos/cosmos-sdk/types"
)
Expand Down
2 changes: 1 addition & 1 deletion x/mint/client/cli/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (

"github.com/spf13/cobra"

"github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/flags"
)
Expand Down
2 changes: 1 addition & 1 deletion x/mint/client/rest/grpc_query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"github.com/gogo/protobuf/proto"
"github.com/stretchr/testify/suite"

minttypes "github.com/CosmosContracts/juno/v10/x/mint/types"
minttypes "github.com/CosmosContracts/juno/v11/x/mint/types"
)

type IntegrationTestSuite struct {
Expand Down
2 changes: 1 addition & 1 deletion x/mint/client/rest/query.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/gorilla/mux"

"github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/types/rest"
)
Expand Down
4 changes: 2 additions & 2 deletions x/mint/client/testutil/suite.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"github.com/stretchr/testify/suite"
tmcli "github.com/tendermint/tendermint/libs/cli"

"github.com/CosmosContracts/juno/v10/x/mint/client/cli"
minttypes "github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/x/mint/client/cli"
minttypes "github.com/CosmosContracts/juno/v11/x/mint/types"

"github.com/cosmos/cosmos-sdk/client/flags"
clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli"
Expand Down
4 changes: 2 additions & 2 deletions x/mint/genesis.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package mint

import (
"github.com/CosmosContracts/juno/v10/x/mint/keeper"
"github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/x/mint/keeper"
"github.com/CosmosContracts/juno/v11/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
)

Expand Down
2 changes: 1 addition & 1 deletion x/mint/keeper/grpc_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package keeper
import (
"context"

"github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
)

Expand Down
4 changes: 2 additions & 2 deletions x/mint/keeper/grpc_query_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"github.com/stretchr/testify/suite"
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"

"github.com/CosmosContracts/juno/v10/app"
"github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/app"
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/cosmos/cosmos-sdk/baseapp"
sdk "github.com/cosmos/cosmos-sdk/types"
)
Expand Down
4 changes: 2 additions & 2 deletions x/mint/keeper/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import (
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"
dbm "github.com/tendermint/tm-db"

junoapp "github.com/CosmosContracts/juno/v10/app"
junoapp "github.com/CosmosContracts/juno/v11/app"
"github.com/cosmos/cosmos-sdk/simapp"

"github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
)

Expand Down
2 changes: 1 addition & 1 deletion x/mint/keeper/keeper.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package keeper
import (
"github.com/tendermint/tendermint/libs/log"

"github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/cosmos/cosmos-sdk/codec"
sdk "github.com/cosmos/cosmos-sdk/types"
paramtypes "github.com/cosmos/cosmos-sdk/x/params/types"
Expand Down
2 changes: 1 addition & 1 deletion x/mint/keeper/migrator.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package keeper

import (
v2 "github.com/CosmosContracts/juno/v10/x/mint/migrations/v2"
v2 "github.com/CosmosContracts/juno/v11/x/mint/migrations/v2"
sdk "github.com/cosmos/cosmos-sdk/types"
)

Expand Down
2 changes: 1 addition & 1 deletion x/mint/keeper/querier.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package keeper
import (
abci "github.com/tendermint/tendermint/abci/types"

"github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/cosmos/cosmos-sdk/codec"
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
Expand Down
4 changes: 2 additions & 2 deletions x/mint/keeper/querier_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

"github.com/stretchr/testify/require"

keep "github.com/CosmosContracts/juno/v10/x/mint/keeper"
"github.com/CosmosContracts/juno/v10/x/mint/types"
keep "github.com/CosmosContracts/juno/v11/x/mint/keeper"
"github.com/CosmosContracts/juno/v11/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"

abci "github.com/tendermint/tendermint/abci/types"
Expand Down
2 changes: 1 addition & 1 deletion x/mint/migrations/v2/migrate.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package v2

import (
"github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/cosmos/cosmos-sdk/codec"
sdk "github.com/cosmos/cosmos-sdk/types"
)
Expand Down
10 changes: 5 additions & 5 deletions x/mint/module.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ import (
"github.com/spf13/cobra"
abci "github.com/tendermint/tendermint/abci/types"

"github.com/CosmosContracts/juno/v10/x/mint/client/cli"
"github.com/CosmosContracts/juno/v10/x/mint/client/rest"
"github.com/CosmosContracts/juno/v10/x/mint/keeper"
"github.com/CosmosContracts/juno/v10/x/mint/simulation"
"github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/x/mint/client/cli"
"github.com/CosmosContracts/juno/v11/x/mint/client/rest"
"github.com/CosmosContracts/juno/v11/x/mint/keeper"
"github.com/CosmosContracts/juno/v11/x/mint/simulation"
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/codec"
cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
Expand Down
2 changes: 1 addition & 1 deletion x/mint/module_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
abcitypes "github.com/tendermint/tendermint/abci/types"
tmproto "github.com/tendermint/tendermint/proto/tendermint/types"

"github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/cosmos/cosmos-sdk/simapp"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
)
Expand Down
2 changes: 1 addition & 1 deletion x/mint/simulation/decoder.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"bytes"
"fmt"

"github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/types/kv"
)
Expand Down
6 changes: 3 additions & 3 deletions x/mint/simulation/decoder_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (

"github.com/stretchr/testify/require"

"github.com/CosmosContracts/juno/v10/app"
"github.com/CosmosContracts/juno/v10/x/mint/simulation"
"github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/app"
"github.com/CosmosContracts/juno/v11/x/mint/simulation"
"github.com/CosmosContracts/juno/v11/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/kv"
)
Expand Down
2 changes: 1 addition & 1 deletion x/mint/simulation/genesis.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"fmt"
"math/rand"

"github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/x/mint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"
)
Expand Down
4 changes: 2 additions & 2 deletions x/mint/simulation/genesis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (

"github.com/stretchr/testify/require"

"github.com/CosmosContracts/juno/v10/x/mint/simulation"
"github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/x/mint/simulation"
"github.com/CosmosContracts/juno/v11/x/mint/types"
"github.com/cosmos/cosmos-sdk/codec"
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
sdk "github.com/cosmos/cosmos-sdk/types"
Expand Down
2 changes: 1 addition & 1 deletion x/mint/simulation/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (

"github.com/cosmos/cosmos-sdk/x/simulation"

"github.com/CosmosContracts/juno/v10/x/mint/types"
"github.com/CosmosContracts/juno/v11/x/mint/types"
simtypes "github.com/cosmos/cosmos-sdk/types/simulation"
)

Expand Down
2 changes: 1 addition & 1 deletion x/mint/simulation/params_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"github.com/stretchr/testify/require"

"github.com/CosmosContracts/juno/v10/x/mint/simulation"
"github.com/CosmosContracts/juno/v11/x/mint/simulation"
)

func TestParamChangest(t *testing.T) {
Expand Down

0 comments on commit 201336e

Please sign in to comment.