This repository was archived by the owner on Jan 27, 2026. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +2
-5
lines changed
orchestrator/src/discovery Expand file tree Collapse file tree 3 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ use crate::models::node::NodeStatus;
33use crate :: models:: node:: OrchestratorNode ;
44use crate :: plugins:: StatusUpdatePlugin ;
55use crate :: store:: core:: StoreContext ;
6+ use crate :: store:: NodeStore ;
67use crate :: utils:: loop_heartbeats:: LoopHeartbeats ;
78use alloy:: primitives:: Address ;
89use alloy:: primitives:: U256 ;
@@ -448,8 +449,6 @@ impl DiscoveryMonitor {
448449 }
449450}
450451
451- use crate :: store:: NodeStore ;
452-
453452async fn enrich_nodes_without_location (
454453 node_store : Arc < NodeStore > ,
455454 location_service : LocationService ,
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ impl ValidatorHealth {
4141}
4242
4343pub struct Validator {
44- synthetic_validator : Option < SyntheticDataValidator < WalletProvider > > , // TOOD : does this need to be optional?
44+ synthetic_validator : Option < SyntheticDataValidator < WalletProvider > > , // TODO : does this need to be optional?
4545 provider : WalletProvider ,
4646 contracts : Contracts < WalletProvider > ,
4747 hardware_validator : HardwareValidator ,
Original file line number Diff line number Diff line change @@ -865,8 +865,6 @@ pub async fn execute_command(
865865 std:: process:: exit ( 1 ) ;
866866 }
867867
868- // discovery_updater.start_auto_update(node_config);
869-
870868 if recover_last_state {
871869 info ! ( "Recovering from previous state: {recover_last_state}" ) ;
872870 heartbeat. activate_heartbeat_if_endpoint_exists ( ) . await ;
You can’t perform that action at this time.
0 commit comments