Skip to content

Commit

Permalink
chore: Update after review
Browse files Browse the repository at this point in the history
  • Loading branch information
kulikthebird committed Jan 20, 2025
1 parent 6f22301 commit 1cf8fb3
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion tests/integration/ibc_integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ func TestIBCReflectContract(t *testing.T) {

coordinator.SetupConnections(path)

// TODO tkulik: Przy CreateChannels trzeba przechwycić pakiety w SendMesgs
coordinator.CreateChannels(path)

// TODO: query both contracts directly to ensure they have registered the proper connection
Expand Down
3 changes: 1 addition & 2 deletions tests/wasmibctesting/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ func (chain *WasmTestChain) CaptureIBCEvents(result *abci.ExecTxResult) {
}
}

// TODO tkulik: Przy CreateChannels trzeba przechwycić pakiety w SendMesgs
func (chain *WasmTestChain) OverrideSendMsgs(msgs ...sdk.Msg) (*abci.ExecTxResult, error) {
chain.SendMsgsOverride = nil
result, err := chain.TestChain.SendMsgs(msgs...)
Expand Down Expand Up @@ -303,7 +302,7 @@ func RelayPacketWithoutAck(path *ibctesting.Path, packet channeltypes.Packet) er
}

// RelayAndAckPendingPackets sends pending packages from path.EndpointA to the counterparty chain and acks
func RelayAndAckPendingPackets(chainA *WasmTestChain, chainB *WasmTestChain, path *ibctesting.Path) error {
func RelayAndAckPendingPackets(chainA, chainB *WasmTestChain, path *ibctesting.Path) error {
// get all the packet to relay src->dest
src := path.EndpointA
require.NoError(chainA, src.UpdateClient())
Expand Down

0 comments on commit 1cf8fb3

Please sign in to comment.