File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ pub struct HistoricEventScanner<N: Network> {
3333
3434impl HistoricScannerBuilder {
3535 #[ must_use]
36- pub ( super ) fn new ( ) -> Self {
36+ pub ( crate ) fn new ( ) -> Self {
3737 Self {
3838 block_range_scanner : BlockRangeScanner :: new ( ) ,
3939 from_block : BlockNumberOrTag :: Earliest ,
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ pub struct LatestEventScanner<N: Network> {
3838
3939impl LatestScannerBuilder {
4040 #[ must_use]
41- pub ( super ) fn new ( ) -> Self {
41+ pub ( crate ) fn new ( ) -> Self {
4242 Self {
4343 block_range_scanner : BlockRangeScanner :: new ( ) ,
4444 count : 1 ,
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ pub struct LiveEventScanner<N: Network> {
3434
3535impl LiveScannerBuilder {
3636 #[ must_use]
37- pub ( super ) fn new ( ) -> Self {
37+ pub ( crate ) fn new ( ) -> Self {
3838 Self {
3939 block_range_scanner : BlockRangeScanner :: new ( ) ,
4040 block_confirmations : DEFAULT_BLOCK_CONFIRMATIONS ,
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ pub struct SyncEventScanner<N: Network> {
3636
3737impl SyncScannerBuilder {
3838 #[ must_use]
39- pub ( super ) fn new ( ) -> Self {
39+ pub ( crate ) fn new ( ) -> Self {
4040 Self {
4141 block_range_scanner : BlockRangeScanner :: new ( ) ,
4242 from_block : BlockNumberOrTag :: Earliest ,
You can’t perform that action at this time.
0 commit comments