Skip to content

Commit c06d188

Browse files
committed
fix seqno compare
1 parent 60ccf2c commit c06d188

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wallet/wallet.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ func (w *Wallet) RawSendV2(
231231
if err == nil {
232232
continue
233233
}
234-
if newSeqno >= seqno {
234+
if newSeqno > seqno {
235235
return msgHash, nil //todo: check if it is the same message
236236
}
237237
}

0 commit comments

Comments
 (0)