-
Notifications
You must be signed in to change notification settings - Fork 329
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix electrum conftime_req filter for needs_block_height #1782
fix electrum conftime_req filter for needs_block_height #1782
Conversation
LGTM |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK 8d190ba
f1dac61
to
bbd0658
Compare
4537c51
to
81a1433
Compare
6d04fe5
to
3ad96b5
Compare
5b4f186
to
20100aa
Compare
I had to make some small fixes to get CI to complete, see 4aa8fba...20100aa. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've just updated rgb-lib to bdk 0.30.0 and almost all its tests started failing. Precisely the call |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
utACK 20100aa
@notmandatory any specific reason to downgrade the runners to ubuntu-20.04
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ACK 20100aa
@notmandatory any specific reason to downgrade the runners to ubuntu-20.04?
Curious about this too
@oleonardolima and @nymius I had to downgrade the runner to the ubuntu-20.04 for two issues:
I don't see any reason to fix these two things to work with the latest ubuntu since they're rarely used. |
6d2e243 release: bump version to 0.30.1 (Steve Myers) e52c911 docs: update README to deprecate the bdk lib (Steve Myers) Pull request description: ### Description This is needed to direct new and existing users to upgrade to the new `bdk_wallet`1.0 library. I also used this PR to bump the version and changelog to v0.30.1 so we're ready to publish the fix in #1782. ### Checklists #### All Submissions: * [x] I've signed all my commits * [x] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md) * [x] I ran `cargo fmt` and `cargo clippy` before committing ACKs for top commit: thunderbiscuit: ACK 6d2e243. Tree-SHA512: b5d5eb8ae2df719e18430a7629970f0ec06e023d07a7ff1ea03bb7fb43b5bcb27d5975473cc2c1a310afe16b64263551ce2d25c2a44a0302cfdacd9a41f597d7
Description
This PR fixes a bug introduced in 04994e4#diff-57bf66f87897e694c5ebfdfe0fd366774dda30b43eab93c1a0fdc802d0eb8c8dR171
In that commit
block_times.get(height).is_none()
was converted toblock_times.contains_key(height)
, inverting the code logic.Checklists
All Submissions:
cargo fmt
andcargo clippy
before committing