update next tx seq

This commit is contained in:
Peter Zhang 2024-09-02 09:48:37 +08:00
parent 0734ec9886
commit e75f58c1ee

View File

@ -427,6 +427,7 @@ impl LogSyncManager {
&executor_clone,
Duration::from_millis(self.config.recover_query_delay),
);
self.next_tx_seq = self.store.next_tx_seq();
self.handle_data(recover_rx).await?;
}
@ -437,6 +438,7 @@ impl LogSyncManager {
self.config.default_finalized_block_count,
self.config.remove_finalized_block_interval_minutes,
);
Ok(())
}
}