Skip to content

Commit af33531

Browse files
authored
Merge pull request #2676 from input-output-hk/jpraynaud/2625-rollback-binary-encoding-single-signature
chore: rollback binary encoding for single signature
2 parents 38e4c3e + 4671b53 commit af33531

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mithril-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-common"
3-
version = "0.6.15"
3+
version = "0.6.16"
44
description = "Common types, interfaces, and utilities for Mithril nodes."
55
authors = { workspace = true }
66
edition = { workspace = true }

mithril-common/src/crypto_helper/types/wrappers.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ pub type ProtocolMkProof = ProtocolKey<MKMapProof<BlockRange>>;
3131

3232
impl_codec_and_type_conversions_for_protocol_key!(
3333
json_hex_codec => AggregateSignature<D>, ed25519_dalek::VerifyingKey, ed25519_dalek::SigningKey, AggregateVerificationKey<D>,
34-
MKProof, VerificationKeyProofOfPossession, Sum6KesSig, OpCert
34+
MKProof, VerificationKeyProofOfPossession, Sum6KesSig, OpCert, SingleSignature
3535
);
3636

3737
impl_codec_and_type_conversions_for_protocol_key!(
38-
bytes_hex_codec => SingleSignature, ed25519_dalek::Signature
38+
bytes_hex_codec => ed25519_dalek::Signature
3939
);

0 commit comments

Comments
 (0)