From 1b9f0504a4bd1b6d0fb1f125ca8053d24b0a4915 Mon Sep 17 00:00:00 2001 From: Steve Myers Date: Mon, 31 May 2021 20:16:32 -0700 Subject: [PATCH] Add 'compact_filters' feature to CI, fix typo in ProxyOpts --- .github/workflows/cont_integration.yml | 1 + src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 3931db1..d3aa9fa 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -18,6 +18,7 @@ jobs: - electrum - esplora - compiler + - compact_filters - repl,electrum,esplora,compiler steps: - name: Checkout diff --git a/src/lib.rs b/src/lib.rs index 71e56b6..8587705 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -371,7 +371,7 @@ pub struct ProxyOpts { pub proxy: Option, /// Sets the SOCKS5 proxy credential - #[structopt(name="PRXOY_USER:PASSWD", long="proxy_auth", short="a", parse(try_from_str = parse_proxy_auth))] + #[structopt(name="PROXY_USER:PASSWD", long="proxy_auth", short="a", parse(try_from_str = parse_proxy_auth))] pub proxy_auth: Option<(String, String)>, /// Sets the SOCKS5 proxy retries for the Electrum client -- 2.49.0