Skip to content

Commit

Permalink
fix(inx): sync gaps with single milestone (#487)
Browse files Browse the repository at this point in the history
  • Loading branch information
grtlr authored Jul 28, 2022
1 parent fed00f0 commit d689c8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/inx-chronicle/src/stardust_inx/ledger_update_stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ impl Actor for LedgerUpdateStream {
.listen_to_ledger_updates(if *self.range.end() == u32::MAX {
(self.range.start().0..).into()
} else {
(self.range.start().0..self.range.end().0).into()
(self.range.start().0..=self.range.end().0).into()
})
.await?;
cx.add_stream(ledger_update_stream);
Expand Down

0 comments on commit d689c8c

Please sign in to comment.