Skip to content

Commit e4ecb76

Browse files
committed
Expose additional TLS backends for electrum-client via features
Recently, `rustls` introduced a new default crypto provider in `aws-lc-rc`. Since there have been reports on this new provider not building properly on certain platforms `electrum-client` introduced additional features allowing the user to configure what backend to use for TLS. Here, we simply re-expose these features to our users, which also mirrors what we do for Esplora already.
1 parent 14da3cb commit e4ecb76

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

ci/ci-tx-sync-tests.sh

+6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ cargo check --verbose --color always --features esplora-blocking
2424
cargo check --verbose --color always --features esplora-async
2525
cargo check --verbose --color always --features esplora-async-https
2626
cargo check --verbose --color always --features electrum
27+
cargo check --verbose --color always --features electrum-rustls
28+
cargo check --verbose --color always --features electrum-rustls-ring
29+
cargo check --verbose --color always --features electrum-openssl
2730

2831
if [ -z "$CI_ENV" ] && [[ -z "$BITCOIND_EXE" || -z "$ELECTRS_EXE" ]]; then
2932
echo -e "\n\nSkipping testing Transaction Sync Clients due to BITCOIND_EXE or ELECTRS_EXE being unset."
@@ -34,6 +37,9 @@ else
3437
cargo test --verbose --color always --features esplora-async
3538
cargo test --verbose --color always --features esplora-async-https
3639
cargo test --verbose --color always --features electrum
40+
cargo test --verbose --color always --features electrum-rustls
41+
cargo test --verbose --color always --features electrum-rustls-ring
42+
cargo test --verbose --color always --features electrum-openssl
3743
fi
3844

3945
popd

lightning-transaction-sync/Cargo.toml

+10-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,12 @@ time = []
1919
esplora-async = ["async-interface", "esplora-client/async", "esplora-client/tokio", "futures"]
2020
esplora-async-https = ["esplora-async", "esplora-client/async-https-rustls"]
2121
esplora-blocking = ["esplora-client/blocking"]
22-
electrum = ["electrum-client"]
22+
23+
# Default to `rustls`
24+
electrum = ["electrum-rustls"]
25+
electrum-rustls = ["electrum-client/use-rustls"]
26+
electrum-rustls-ring = ["electrum-client/use-rustls-ring"]
27+
electrum-openssl = ["electrum-client/use-openssl"]
2328
async-interface = []
2429

2530
[dependencies]
@@ -28,7 +33,10 @@ lightning-macros = { version = "0.1", path = "../lightning-macros", default-feat
2833
bitcoin = { version = "0.32.2", default-features = false }
2934
futures = { version = "0.3", optional = true }
3035
esplora-client = { version = "0.11", default-features = false, optional = true }
31-
electrum-client = { version = "0.22.0", optional = true }
36+
37+
# As of v0.22, electrum-client's `proxy` feature is still defacto mandatory,
38+
# see https://github.com/bitcoindevkit/rust-electrum-client/issues/91
39+
electrum-client = { version = "0.22.0", optional = true, default-features = false, features = ["proxy"] }
3240

3341
[dev-dependencies]
3442
lightning = { version = "0.2.0", path = "../lightning", default-features = false, features = ["std", "_test_utils"] }

0 commit comments

Comments
 (0)