Skip to content

Commit

Permalink
rm deprecated sdktypes.WrapSDKContext usage
Browse files Browse the repository at this point in the history
  • Loading branch information
sotnikov-s committed Jun 14, 2024
1 parent b2447ae commit 7fd5524
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x/tokenfactory/keeper/keeper_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ func (suite *KeeperTestSuite) TestBurnFromMsg() {
suite.Run("test burn from", func() {
mintAmt := sdktypes.NewInt64Coin(suite.defaultDenom, 10)

_, err := suite.msgServer.Mint(sdktypes.WrapSDKContext(suite.ChainA.GetContext()), types.NewMsgMint(suite.TestAccs[0].String(), mintAmt))
_, err := suite.msgServer.Mint(suite.ChainA.GetContext(), types.NewMsgMint(suite.TestAccs[0].String(), mintAmt))
suite.Require().NoError(err)

govModAcc := suite.GetNeutronZoneApp(suite.ChainA).AccountKeeper.GetModuleAccount(suite.ChainA.GetContext(), authtypes.FeeCollectorName)
Expand Down

0 comments on commit 7fd5524

Please sign in to comment.