Skip to content

Commit 22cb2c2

Browse files
authored
feat(cbf):
add auto-restart with exponential backoff (#10) * refactor(cbf): extract build_cbf_node helper and add wallet reference * feat(cbf): auto-restart bip157 node with exponential backoff * feat(cbf): add liveness check before returning requester * fix(cbf): clean up scan state on filter scan failure * fix(cbf): add per-block-fetch timeout to wallet sync
1 parent 7b878ef commit 22cb2c2

File tree

6 files changed

+281
-85
lines changed

6 files changed

+281
-85
lines changed

.github/workflows/rust.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ jobs:
4141
- name: Check formatting on Rust ${{ matrix.toolchain }}
4242
if: matrix.check-fmt
4343
run: rustup component add rustfmt && cargo fmt --all -- --check
44+
- name: Pin packages to allow for MSRV
45+
if: matrix.msrv
46+
run: |
47+
cargo update -p idna_adapter --precise "1.2.0" --verbose # idna_adapter 1.2.1 uses ICU4X 2.2.0, requiring 1.86 and newer
4448
- name: Set RUSTFLAGS to deny warnings
4549
if: "matrix.toolchain == 'stable'"
4650
run: echo "RUSTFLAGS=-D warnings" >> "$GITHUB_ENV"

0 commit comments

Comments
 (0)