Progress on Cancellation path

This commit is contained in:
Franck Royer 2020-11-24 14:42:51 +11:00 committed by rishflab
parent 8e31a3af6a
commit bff83bbe99
3 changed files with 130 additions and 33 deletions

View file

@ -153,3 +153,10 @@ impl TransactionBlockHeight for Wallet {
.expect("transient errors to be retried")
}
}
#[async_trait]
impl GetRawTransaction for Wallet {
async fn get_raw_transaction(&self, txid: Txid) -> Option<Transaction> {
todo!()
}
}