We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e01461 commit 5467f1eCopy full SHA for 5467f1e
x/wasm/ibc.go
@@ -419,8 +419,7 @@ func (i IBCHandler) IBCReceivePacketCallback(
419
// detect successful IBC transfer, meaning:
420
// 1. it was sent to the transfer module
421
// 2. the acknowledgement was successful
422
- if packet.GetDestPort() == i.transferKeeper.GetPort(cachedCtx) &&
423
- ack.Success() && err == nil {
+ if packet.GetDestPort() == i.transferKeeper.GetPort(cachedCtx) && ack.Success() {
424
425
transferData, err := transfertypes.UnmarshalPacketData(packet.GetData(), version, "")
426
if err != nil {
0 commit comments