Skip to content

Commit

Permalink
[R4R] - {0.4.2}: fix dtl sync data bug (#1258) (#1260)
Browse files Browse the repository at this point in the history
fix dtl sync data bug (#1258)

Co-authored-by: Shijiang Guo <guoshijiang2012@163.com>
Co-authored-by: Raymond <6427270+wukongcheng@users.noreply.github.com>
  • Loading branch information
3 people authored Jul 6, 2023
1 parent e712137 commit ca7d2f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ export class DaIngestionService extends BaseService<DaIngestionServiceOptions> {
let origin = null
if (batchTx['TxMeta']['queueIndex'] != null) {
const latestEnqueue = await this.state.db.getLatestEnqueue()
if (latestEnqueue.index > batchTx['TxMeta']['queueIndex']) {
if (latestEnqueue.index >= batchTx['TxMeta']['queueIndex']) {
this.logger.info('get queue index from da and l1(EigenLayer)', {
lastestEnqueue: latestEnqueue.index,
queueIndex: batchTx['TxMeta']['queueIndex'],
Expand Down

0 comments on commit ca7d2f9

Please sign in to comment.