File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
mithril-common/src/entities Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ pub enum ProtocolMessagePartKey {
9
9
#[ serde( rename = "snapshot_digest" ) ]
10
10
SnapshotDigest ,
11
11
12
+ /// The ProtocolMessage part key associated to the Cardano Transactions Merkle Root
13
+ #[ serde( rename = "cardano_transactions_merkle_root" ) ]
14
+ CardanoTransactionsMerkleRoot ,
15
+
12
16
/// The ProtocolMessage part key associated to the Next epoch aggregate verification key
13
17
/// The AVK that will be allowed to be used to sign during the next epoch
14
18
/// aka AVK(n-1)
@@ -21,6 +25,7 @@ impl Display for ProtocolMessagePartKey {
21
25
match * self {
22
26
Self :: SnapshotDigest => write ! ( f, "snapshot_digest" ) ,
23
27
Self :: NextAggregateVerificationKey => write ! ( f, "next_aggregate_verification_key" ) ,
28
+ Self :: CardanoTransactionsMerkleRoot => write ! ( f, "cardano_transactions_merkle_root" ) ,
24
29
}
25
30
}
26
31
}
You can’t perform that action at this time.
0 commit comments