Skip to content

Commit

Permalink
Fix merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
dzmitryhil committed Nov 9, 2023
1 parent b2394ab commit fe7cdbd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion integration-tests/modules/assetft_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5335,7 +5335,8 @@ func TestAssetFTMintingAndSendingOnBehalfOfIssuingSmartContractIsPossibleEvenIfS
Sender: contractAddr,
Recipient: recipient.String(),
Coin: sdk.NewInt64Coin(denom, 100),
}})
},
})

chain.FundAccountWithOptions(ctx, t, grantee, integration.BalancesOptions{
Messages: []sdk.Msg{
Expand Down
10 changes: 6 additions & 4 deletions integration-tests/modules/wasm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ import (
_ "embed"
"encoding/base64"
"encoding/json"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
"math/rand"
"testing"
"time"
Expand All @@ -18,9 +16,11 @@ import (
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
sdk "github.com/cosmos/cosmos-sdk/types"
cosmoserrors "github.com/cosmos/cosmos-sdk/types/errors"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
vestingtypes "github.com/cosmos/cosmos-sdk/x/auth/vesting/types"
authztypes "github.com/cosmos/cosmos-sdk/x/authz"
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types"
govtypesv1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1"
nfttypes "github.com/cosmos/cosmos-sdk/x/nft"
"github.com/samber/lo"
Expand Down Expand Up @@ -352,7 +352,8 @@ func TestWASMPinningAndUnpinningSmartContractUsingGovernance(t *testing.T) {
&wasmtypes.MsgPinCodes{
Authority: authtypes.NewModuleAddress(govtypes.ModuleName).String(),
CodeIDs: []uint64{codeID},
}},
},
},
"",
"Pin smart contract",
"Testing smart contract pinning",
Expand Down Expand Up @@ -386,7 +387,8 @@ func TestWASMPinningAndUnpinningSmartContractUsingGovernance(t *testing.T) {
&wasmtypes.MsgUnpinCodes{
Authority: authtypes.NewModuleAddress(govtypes.ModuleName).String(),
CodeIDs: []uint64{codeID},
}},
},
},
"",
"Unpin smart contract",
"Testing smart contract unpinning",
Expand Down

0 comments on commit fe7cdbd

Please sign in to comment.