Skip to content

Commit 57f35a2

Browse files
committed
Cleaned out old debug print statements.
1 parent 304b715 commit 57f35a2

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

rust/src/records.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,7 @@ impl BidAskPair {
100100
pub fn pretty_mid_px(&self) -> f64 {
101101
let bid_px: f64 = (self.bid_px / PRICE_SCALE) as f64;
102102
let ask_px: f64 = (self.ask_px / PRICE_SCALE) as f64;
103-
println!("{:?} {:?}", bid_px, ask_px);
104103
let mid = (bid_px + ask_px) / 2.0;
105-
println!("{:?}", mid);
106104
mid
107105
}
108106
}

0 commit comments

Comments
 (0)