Skip to content

Commit

Permalink
remove debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
sadministrator committed Jun 7, 2024
1 parent f873b52 commit 384ae37
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,6 @@ impl Snapshot {
&self,
get_known_tx: impl Fn(TxHash) -> Option<Transaction>,
) -> Result<Block, ClientError> {
dbg!(self.height);
let header = self.current_header();
let (block, _) = self
.raw
Expand Down Expand Up @@ -794,7 +793,6 @@ impl Snapshot {
let coins: HashSet<CoinID> = coins.into_iter().collect();
let count = self.get_coin_count(covhash).await?;
if let Some(count) = count {
dbg!(count);
if count != coins.len() as u64 {
return Err(ClientError::InvalidState(anyhow::anyhow!(
"got incomplete list of {} coins rather than {}",
Expand Down

0 comments on commit 384ae37

Please sign in to comment.