diff --git a/keeper/src/main.rs b/keeper/src/main.rs index 3fa45acb0..11a98d8bc 100644 --- a/keeper/src/main.rs +++ b/keeper/src/main.rs @@ -3,6 +3,12 @@ use std::{rc::Rc, str::FromStr, time::Duration}; use solana_sdk::{instruction::Instruction, signature::Keypair}; use tokio::time; +// TODO: +// cmd line args +// expand to various tasks e.g. crank event queue, crank banks, run liquidators +// support multiple workers +// logging facility +// robust error handling fn main() { let rt = tokio::runtime::Builder::new_multi_thread() .enable_all()