This commit is contained in:
wangchuxiao
2023-05-16 20:28:26 +08:00
parent cf8d52d305
commit b89d5ec0ab
2 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -293,7 +293,7 @@ func GetSeqsBeginEnd(seqs []int64) (int64, int64) {
if len(seqs) == 0 {
return 0, 0
}
return seqs[len(seqs)-1], seqs[0]
return seqs[0], seqs[len(seqs)-1]
}
type MsgBySeq []*sdkws.MsgData