Skip to content

Commit

Permalink
Fix build error when building with neither esplora nor electrum support
Browse files Browse the repository at this point in the history
  • Loading branch information
Ademan committed Jan 14, 2024
1 parent b8871c7 commit 7b0f91d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/txout_set.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
use bdk::bitcoin::{OutPoint, Transaction, TxOut, Txid};
use bdk::bitcoin::{OutPoint, TxOut};
#[cfg(any(feature = "electrum", feature = "use-esplora-blocking"))]
use bdk::bitcoin::{Transaction, Txid};
use bdk::database::BatchDatabase;
use bdk::wallet::Wallet;

Expand Down

0 comments on commit 7b0f91d

Please sign in to comment.