Skip to content

Commit

Permalink
fix: ci (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
darioAnongba authored Dec 11, 2024
1 parent 929046c commit 84bef00
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 112 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
- debug,default
- debug,esplora
- debug,snap
- debug,bitcoind
steps:
- name: checkout
uses: actions/checkout@v4
Expand All @@ -40,7 +39,7 @@ jobs:
fi
- name: Test
if: ${{ matrix.features != 'all' }}
run: wasm-pack test --chrome --firefox --safari --headless --features ${{ matrix.features }}
run: wasm-pack test --chrome --firefox --headless --features ${{ matrix.features }}

lint:
name: Lint (fmt + clippy)
Expand Down
2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ default = []
esplora = ["bdk_esplora"]
debug = ["console_error_panic_hook"]
snap = ["esplora"]
bitcoind = ["bdk_bitcoind_rpc"]

[dependencies]
wasm-bindgen = "0.2.95"
Expand All @@ -49,7 +48,6 @@ bdk_esplora = { version = "0.19", default-features = false, features = [
], optional = true }
bitcoin = { version = "0.32.4", default-features = false }
miniscript = "12.2.0"
bdk_bitcoind_rpc = { version = "0.16.0", optional = true }

# Debug dependencies
console_error_panic_hook = { version = "0.1.7", optional = true }
Expand Down
6 changes: 0 additions & 6 deletions src/bitcoin/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,8 @@ mod esplora_wallet;
#[cfg(feature = "snap")]
mod snap_wallet;

#[cfg(feature = "bitcoind")]
mod rpc_wallet;

#[cfg(feature = "esplora")]
pub use esplora_wallet::EsploraWallet;

#[cfg(feature = "snap")]
pub use snap_wallet::SnapWallet;

#[cfg(feature = "bitcoind")]
pub use rpc_wallet::RpcWallet;
59 changes: 0 additions & 59 deletions src/bitcoin/rpc_wallet.rs

This file was deleted.

43 changes: 0 additions & 43 deletions tests/rpc.rs

This file was deleted.

0 comments on commit 84bef00

Please sign in to comment.