Skip to content

Commit

Permalink
blockbook: use reexported BitcoinTransaction type
Browse files Browse the repository at this point in the history
  • Loading branch information
bachmannscode committed May 16, 2023
1 parent 5c55d8d commit f36add6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<Txid> {
pub async fn send_transaction(&self, tx: &BitcoinTransaction) -> Result<Txid> {
#[derive(serde::Deserialize)]
struct Response {
result: Txid,
Expand Down

0 comments on commit f36add6

Please # to comment.