Skip to content

Commit

Permalink
fix seqno compare
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-tron committed Aug 4, 2024
1 parent 60ccf2c commit c06d188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wallet/wallet.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ func (w *Wallet) RawSendV2(
if err == nil {
continue
}
if newSeqno >= seqno {
if newSeqno > seqno {
return msgHash, nil //todo: check if it is the same message
}
}
Expand Down

0 comments on commit c06d188

Please sign in to comment.