From f36add67deb2e89c26e402da938242add65a7a3b Mon Sep 17 00:00:00 2001 From: Michael Bachmann Date: Wed, 10 May 2023 15:14:10 +0200 Subject: [PATCH] blockbook: use reexported `BitcoinTransaction` type --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 002e545..9f1996d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -507,7 +507,7 @@ impl Blockbook { /// /// If the underlying network request fails, if the server returns a /// non-success response, or if the response body is of unexpected format. - pub async fn send_transaction(&self, tx: &bitcoin::Transaction) -> Result { + pub async fn send_transaction(&self, tx: &BitcoinTransaction) -> Result { #[derive(serde::Deserialize)] struct Response { result: Txid,