forked from solana-labs/solana
-
Notifications
You must be signed in to change notification settings - Fork 231
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TransactionScheduler: CLI and hookup for central-scheduler (solana-la…
- Loading branch information
Showing
5 changed files
with
215 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,13 @@ | ||
mod batch_id_generator; | ||
#[allow(dead_code)] | ||
mod in_flight_tracker; | ||
pub(crate) mod prio_graph_scheduler; | ||
pub(crate) mod scheduler_controller; | ||
pub(crate) mod scheduler_error; | ||
mod thread_aware_account_locks; | ||
|
||
mod transaction_id_generator; | ||
mod transaction_priority_id; | ||
#[allow(dead_code)] | ||
mod transaction_state; | ||
#[allow(dead_code)] | ||
mod transaction_state_container; | ||
|
||
mod batch_id_generator; | ||
#[allow(dead_code)] | ||
mod in_flight_tracker; | ||
#[allow(dead_code)] | ||
mod prio_graph_scheduler; | ||
#[allow(dead_code)] | ||
mod scheduler_controller; | ||
mod scheduler_error; | ||
#[allow(dead_code)] | ||
mod transaction_id_generator; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters