File tree 9 files changed +9
-9
lines changed
subvt-block-processor/src
subvt-network-status-server/src
subvt-notification-generator/src
subvt-telemetry-processor/src
subvt-validator-details-server/src
subvt-validator-list-server/src
subvt-validator-list-updater/src
9 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use subvt_app_service::AppService;
5
5
use subvt_service_common:: Service ;
6
6
7
7
lazy_static ! {
8
- static ref SERVICE : AppService = AppService :: default ( ) ;
8
+ static ref SERVICE : AppService = AppService ;
9
9
}
10
10
11
11
#[ actix_web:: main]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use subvt_block_processor::BlockProcessor;
5
5
use subvt_service_common:: Service ;
6
6
7
7
lazy_static ! {
8
- static ref SERVICE : BlockProcessor = BlockProcessor :: default ( ) ;
8
+ static ref SERVICE : BlockProcessor = BlockProcessor ;
9
9
}
10
10
11
11
#[ tokio:: main]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use subvt_network_status_server::NetworkStatusServer;
5
5
use subvt_service_common:: Service ;
6
6
7
7
lazy_static ! {
8
- static ref SERVICE : NetworkStatusServer = NetworkStatusServer :: default ( ) ;
8
+ static ref SERVICE : NetworkStatusServer = NetworkStatusServer ;
9
9
}
10
10
11
11
#[ tokio:: main]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use subvt_notification_generator::NotificationGenerator;
5
5
use subvt_service_common:: Service ;
6
6
7
7
lazy_static ! {
8
- static ref SERVICE : NotificationGenerator = NotificationGenerator :: default ( ) ;
8
+ static ref SERVICE : NotificationGenerator = NotificationGenerator ;
9
9
}
10
10
11
11
#[ tokio:: main]
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ use subvt_report_service::ReportService;
4
4
use subvt_service_common:: Service ;
5
5
6
6
lazy_static ! {
7
- static ref SERVICE : ReportService = ReportService :: default ( ) ;
7
+ static ref SERVICE : ReportService = ReportService ;
8
8
}
9
9
10
10
#[ actix_web:: main]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use subvt_service_common::Service;
5
5
use subvt_telemetry_processor:: TelemetryProcessor ;
6
6
7
7
lazy_static ! {
8
- static ref SERVICE : TelemetryProcessor = TelemetryProcessor :: default ( ) ;
8
+ static ref SERVICE : TelemetryProcessor = TelemetryProcessor ;
9
9
}
10
10
11
11
#[ tokio:: main]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use subvt_service_common::Service;
5
5
use subvt_validator_details_server:: ValidatorDetailsServer ;
6
6
7
7
lazy_static ! {
8
- static ref SERVICE : ValidatorDetailsServer = ValidatorDetailsServer :: default ( ) ;
8
+ static ref SERVICE : ValidatorDetailsServer = ValidatorDetailsServer ;
9
9
}
10
10
11
11
#[ tokio:: main]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use subvt_service_common::Service;
5
5
use subvt_validator_list_server:: ValidatorListServer ;
6
6
7
7
lazy_static ! {
8
- static ref SERVICE : ValidatorListServer = ValidatorListServer :: default ( ) ;
8
+ static ref SERVICE : ValidatorListServer = ValidatorListServer ;
9
9
}
10
10
11
11
#[ tokio:: main]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use subvt_service_common::Service;
5
5
use subvt_validator_list_updater:: ValidatorListUpdater ;
6
6
7
7
lazy_static ! {
8
- static ref SERVICE : ValidatorListUpdater = ValidatorListUpdater :: default ( ) ;
8
+ static ref SERVICE : ValidatorListUpdater = ValidatorListUpdater ;
9
9
}
10
10
11
11
#[ tokio:: main]
You can’t perform that action at this time.
0 commit comments