Skip to content

Commit

Permalink
Downgrade bip322
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Nov 11, 2024
1 parent eb34581 commit d14d8c7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
10 changes: 6 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ async-trait = "0.1.72"
axum = { version = "0.6.1", features = ["http2"] }
axum-server = "0.5.0"
base64 = "0.22.0"
bip322 = "0.0.9"
bip322 = "0.0.8"
bip39 = "2.0.0"
bitcoin = { version = "=0.32.3", features = ["rand"] }
bitcoincore-rpc = "0.19.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/ordinals/src/sat_point.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ impl Encodable for SatPoint {
}

impl Decodable for SatPoint {
fn consensus_decode<D: bitcoin::io::Read + ?Sized>(
fn consensus_decode<D: bitcoin::io::Read + bitcoin::io::BufRead + ?Sized>(
d: &mut D,
) -> Result<Self, bitcoin::consensus::encode::Error> {
Ok(SatPoint {
Expand Down

0 comments on commit d14d8c7

Please sign in to comment.