Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion protocol/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ futures = { version = "0.3.30", default-features = false, optional = true, featu
# depending on which version of tokio is selected by the caller.
tokio = { version = "1", default-features = false, optional = true, features = ["io-util"] }
rand = { version = "0.8.0", default-features = false }
bitcoin = { version = "0.32.4", default-features = false }
bitcoin = { version = "0.32.0", default-features = false }
# Depending on hashes directly for HKDF, can drop this and
# use the re-exported version in bitcoin > 0.32.*.
bitcoin_hashes = { version ="0.15.0", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion protocol/src/serde.rs
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@

impl Decodable for HeaderDeserializationWrapper {
#[inline]
fn consensus_decode_from_finite_reader<R: bitcoin::io::Read + ?Sized>(
fn consensus_decode_from_finite_reader<R: bitcoin::io::Read + bitcoin::io::BufRead + ?Sized>(

Check failure on line 297 in protocol/src/serde.rs

View workflow job for this annotation

GitHub Actions / features

impl has stricter requirements than trait

Check failure on line 297 in protocol/src/serde.rs

View workflow job for this annotation

GitHub Actions / test (ubuntu-latest)

impl has stricter requirements than trait

Check failure on line 297 in protocol/src/serde.rs

View workflow job for this annotation

GitHub Actions / check (stable)

impl has stricter requirements than trait

Check failure on line 297 in protocol/src/serde.rs

View workflow job for this annotation

GitHub Actions / check (beta)

impl has stricter requirements than trait

Check failure on line 297 in protocol/src/serde.rs

View workflow job for this annotation

GitHub Actions / check (nightly)

impl has stricter requirements than trait
r: &mut R,
) -> Result<Self, encode::Error> {
let len = VarInt::consensus_decode(r)?.0;
Expand Down
2 changes: 1 addition & 1 deletion proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ readme = "README.md"
spec = "config_spec.toml"

[dependencies]
bitcoin = { version = "0.32.4" }
bitcoin = { version = "0.32.0" }
tokio = { version = "1", features = ["full"] }
hex = { package = "hex-conservative", version = "0.2.0" }
bip324 = { path = "../protocol", features = ["tokio"] }
Expand Down
Loading