Skip to content

Commit

Permalink
chore: publish 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuhvi committed Feb 28, 2024
1 parent fc1ee62 commit 50f274d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 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 pkarr/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pkarr"
version = "1.1.1"
version = "1.1.2"
authors = ["Nuh <[email protected]>"]
edition = "2021"
description = "Public-Key Addressable Resource Records (Pkarr); publish and resolve DNS records over Mainline DHT"
Expand Down
2 changes: 1 addition & 1 deletion pkarr/src/signed_packet.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ impl Inner {
if verify_signature {
public_key.verify(&signable(timestamp, encoded_packet), &signature)?;
}
Self::try_from_bytes_and_parts(bytes.into(), public_key, timestamp, signature)
Self::try_from_bytes_and_parts(bytes, public_key, timestamp, signature)
}

fn try_from_response(public_key: PublicKey, response: Bytes) -> Result<Self> {
Expand Down

0 comments on commit 50f274d

Please sign in to comment.