File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
contracts/core/04-channel Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -110,8 +110,9 @@ contract IBCChannelPacketSendRecv is
110110 ChannelStorage storage channelStorage =
111111 getChannelStorage ()[msg_.packet.destinationPort][msg_.packet.destinationChannel];
112112 Channel.Data storage channel = channelStorage.channel;
113- if (channel.state == Channel.State.STATE_OPEN) {}
114- else if (channel.state == Channel.State.STATE_FLUSHING || channel.state == Channel.State.STATE_FLUSHCOMPLETE) {
113+ if (channel.state == Channel.State.STATE_OPEN) {} else if (
114+ channel.state == Channel.State.STATE_FLUSHING || channel.state == Channel.State.STATE_FLUSHCOMPLETE
115+ ) {
115116 RecvStartSequence storage rseq = channelStorage.recvStartSequence;
116117 // prevSequence=0 means the channel is not in the process of being upgraded or counterparty has not been upgraded yet
117118 if (rseq.prevSequence != 0 ) {
You can’t perform that action at this time.
0 commit comments