Skip to content
This repository was archived by the owner on Sep 26, 2023. It is now read-only.

Commit d2fbeeb

Browse files
committed
Cleanup warnings
1 parent 6df0374 commit d2fbeeb

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

lib/src/blaze/fetch_taddr_txns.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
use crate::compact_formats::RawTransaction;
22

33
use crate::lightwallet::keys::Keys;
4-
use log::info;
54
use std::sync::Arc;
65
use tokio::join;
76
use tokio::sync::mpsc::unbounded_channel;

lib/src/blaze/update_notes.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ use crate::lightwallet::{data::WalletTx, wallet_txns::WalletTxns};
33
use std::sync::Arc;
44

55
use futures::future::join_all;
6-
use log::info;
76
use tokio::join;
87
use tokio::sync::oneshot;
98
use tokio::sync::{mpsc::unbounded_channel, RwLock};

lib/src/lightclient.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1189,7 +1189,7 @@ impl LightClient {
11891189
None => any_failed = true,
11901190
Some(p) => {
11911191
// Update the price
1192-
info!("Historical price at txid {} was {}", txid, p);
1192+
// info!("Historical price at txid {} was {}", txid, p);
11931193
self.wallet.txns.write().await.current.get_mut(&txid).unwrap().zec_price = Some(p);
11941194
}
11951195
}

0 commit comments

Comments
 (0)