Skip to content

Commit

Permalink
Change forwarding to non-pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
bznein committed Jun 18, 2024
1 parent 0aee2d3 commit c095d35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/apps/transfer/keeper/relay_forwarding_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ func (suite *KeeperTestSuite) TestOnTimeoutPacketForwarding() {

originalABalance := suite.chainA.GetSimApp().BankKeeper.GetBalance(suite.chainA.GetContext(), sender.GetAddress(), coin.Denom)

forwarding := &types.Forwarding{
forwarding := types.Forwarding{
Hops: []types.Hop{
{
PortId: pathBtoC.EndpointA.ChannelConfig.PortID,
Expand Down Expand Up @@ -719,7 +719,7 @@ func (suite *KeeperTestSuite) TestOnTimeoutPacketForwarding() {
},
address,
receiver.GetAddress().String(),
"", nil,
"", types.Forwarding{},
)

packet = channeltypes.NewPacket(
Expand Down

0 comments on commit c095d35

Please sign in to comment.