You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: IBC.md
+30-22Lines changed: 30 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -264,7 +264,9 @@ pub fn ibc_packet_receive(
264
264
deps:DepsMut,
265
265
env:Env,
266
266
msg:IbcPacketReceiveMsg,
267
-
) ->StdResult<IbcReceiveResponse> { }
267
+
) ->Result<IbcReceiveResponse, Never> {
268
+
// ...
269
+
}
268
270
```
269
271
270
272
This is a very special entry point as it has a unique workflow. (Please see the
@@ -350,27 +352,33 @@ produced 3 suggestions on how to handle errors and rollbacks _inside
350
352
[main dispatch loop in `ibc-reflect`](https://github.com/CosmWasm/cosmwasm/blob/cd784cd1148ee395574f3e564f102d0d7b5adcc3/contracts/ibc-reflect/src/contract.rs#L217-L248):
0 commit comments