From: rajarshimaitra Date: Sun, 2 Oct 2022 13:50:23 +0000 (+0530) Subject: Temporarily Disable CBF X-Git-Tag: v0.26.0~4^2~2 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/database/struct.CommandStringError.html?a=commitdiff_plain;h=11750618c706c158e82a6658b728b0b3a0b7198e;p=bdk-cli Temporarily Disable CBF --- diff --git a/.github/workflows/code_coverage.yml b/.github/workflows/code_coverage.yml index c9e378e..135203f 100644 --- a/.github/workflows/code_coverage.yml +++ b/.github/workflows/code_coverage.yml @@ -38,8 +38,9 @@ jobs: - name: Test Esplora-reqwest run: cargo test --features esplora-reqwest - - name: Test Compact Filters - run: cargo test --features compact_filters + # Temporarily disable compact filters + #- name: Test Compact Filters + # run: cargo test --features compact_filters - name: Test RPC run: cargo test --features rpc diff --git a/Cargo.toml b/Cargo.toml index 4e4c0eb..56dfdb5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,12 +57,15 @@ sqlite-db = ["bdk/sqlite"] # Available blockchain client options rpc = ["bdk/rpc"] electrum = ["bdk/electrum"] -compact_filters = ["bdk/compact_filters"] esplora = [] esplora-ureq = ["esplora", "bdk/use-esplora-ureq"] async-interface = ["bdk/async-interface"] esplora-reqwest = ["esplora", "bdk/use-esplora-reqwest", "bdk/reqwest-default-tls", "async-interface"] +# Compact Filters are temporarily diabled to avoid rockdb vulnerability. +# Ref: https://github.com/bitcoindevkit/bdk-cli/issues/112 +#compact_filters = ["bdk/compact_filters"] + # Use this to consensus verify transactions at sync time verify = ["bdk/verify"]