Skip to content

Commit 9dccfee

Browse files
committed
chore: remove prints
1 parent f15d427 commit 9dccfee

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

packages/injective-test-tube/src/module/auction.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,8 @@ mod tests {
9696

9797
let closing_time = basket_res.auction_closing_time;
9898
let round = basket_res.auction_round;
99-
let highest_bid = basket_res.highest_bid_amount.clone();
100-
let highest_bidder = basket_res.highest_bidder.clone();
10199

102100
assert_eq!(round, 0, "Round should be 0");
103-
println!(
104-
"[check] round={}, closing_time={}, highest_bidder={}, highest_bid_amount={}",
105-
round, closing_time, highest_bidder, highest_bid
106-
);
107-
108101
assert!(closing_time > 0, "closing_time should be positive");
109102
assert!(
110103
closing_time > block_time_sec,
@@ -134,7 +127,6 @@ mod tests {
134127
let basket_response_after_increase = auction
135128
.query_current_auction_basket(&QueryCurrentAuctionBasketRequest {})
136129
.expect("query_current_auction_basket should succeed (after)");
137-
println!("{:?}", basket_response_after_increase);
138130
assert!(
139131
basket_response_after_increase.auction_round > round,
140132
"Round should increase"

0 commit comments

Comments
 (0)