1 2 3 4 5 6 7 8 9
mod ledger; mod transaction; fn main() { use transaction::{ Tx }; let mut tx = Tx::new(); tx.submit().unwrap(); }