Skip to content

Commit 0d0c1da

Browse files
committed
ledger_transactions: Delete temp print statements.
1 parent b650336 commit 0d0c1da

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/ledger/transactions.rs

-3
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,15 @@ impl Ledger {
3838
}
3939
/// Checks if a transaction is OK or not.
4040
pub fn check_transaction(&self, transaction: Transaction) -> bool {
41-
println!("check tr");
4241
if let Ok(()) = self
4342
.database
4443
.lock()
4544
.unwrap()
4645
.verify_transaction(&transaction)
4746
{
48-
println!("check tr1");
4947
return true;
5048
};
5149

52-
println!("check tr2");
5350
false
5451
}
5552
}

0 commit comments

Comments
 (0)