daemon: remove / correct some TODOs
This commit is contained in:
parent
628ed3d0ed
commit
a4e6656688
@ -86,7 +86,6 @@ mod tests {
|
||||
|
||||
// Create a dummy BlockStats struct with the given time
|
||||
fn create_stats(time: u32) -> BlockStats {
|
||||
// TODO
|
||||
BlockStats {
|
||||
height: 0,
|
||||
confirmations: 0,
|
||||
|
||||
@ -571,7 +571,7 @@ impl DaemonControl {
|
||||
let transactions = txids
|
||||
.iter()
|
||||
.filter_map(|txid| {
|
||||
// TODO: batch batch those calls to the Bitcoin backend
|
||||
// TODO: batch those calls to the Bitcoin backend
|
||||
// so it can in turn optimize its queries.
|
||||
self.bitcoin
|
||||
.wallet_transaction(txid)
|
||||
@ -590,7 +590,7 @@ impl DaemonControl {
|
||||
let transactions = txids
|
||||
.iter()
|
||||
.filter_map(|txid| {
|
||||
// TODO: batch batch those calls to the Bitcoin backend
|
||||
// TODO: batch those calls to the Bitcoin backend
|
||||
// so it can in turn optimize its queries.
|
||||
self.bitcoin
|
||||
.wallet_transaction(txid)
|
||||
|
||||
@ -48,7 +48,6 @@ fn default_daemon() -> bool {
|
||||
false
|
||||
}
|
||||
|
||||
// TODO: separate Bitcoin config and bitcoind-specific config.
|
||||
/// Everything we need to know for talking to bitcoind serenely
|
||||
#[derive(Debug, Clone, Deserialize, Serialize)]
|
||||
pub struct BitcoindConfig {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user