@@ -24,43 +24,43 @@ type D = Blake2b<U32>;
24
24
/// The id of a mithril party.
25
25
pub type ProtocolPartyId = String ;
26
26
27
- /// Alias of [MithrilStm:Stake](type@mithril ::stm::Stake).
27
+ /// Alias of [MithrilStm:Stake](type@mithril_stm ::stm::Stake).
28
28
pub type ProtocolStake = Stake ;
29
29
30
30
/// A list of [Party Id][ProtocolPartyId] associated with its [Stake][ProtocolStake].
31
31
pub type ProtocolStakeDistribution = Vec < ( ProtocolPartyId , ProtocolStake ) > ;
32
32
33
- /// Alias of [MithrilStm::StmParameters](struct@mithril ::stm::StmParameters).
33
+ /// Alias of [MithrilStm::StmParameters](struct@mithril_stm ::stm::StmParameters).
34
34
pub type ProtocolParameters = StmParameters ;
35
35
36
- /// Alias of [MithrilStm::Index](type@mithril ::stm::Index).
36
+ /// Alias of [MithrilStm::Index](type@mithril_stm ::stm::Index).
37
37
pub type ProtocolLotteryIndex = Index ;
38
38
39
- /// Alias of [MithrilStm:StmSigner](struct@mithril ::stm::StmSigner).
39
+ /// Alias of [MithrilStm:StmSigner](struct@mithril_stm ::stm::StmSigner).
40
40
pub type ProtocolSigner = StmSigner < D > ;
41
41
42
- /// Alias of a wrapper of [MithrilStm:StmInitializer](struct@mithril ::stm::StmInitializer).
42
+ /// Alias of a wrapper of [MithrilStm:StmInitializer](struct@mithril_stm ::stm::StmInitializer).
43
43
pub type ProtocolInitializer = StmInitializerWrapper ;
44
44
45
- /// Alias of [MithrilStm:StmClerk](struct@mithril ::stm::StmClerk).
45
+ /// Alias of [MithrilStm:StmClerk](struct@mithril_stm ::stm::StmClerk).
46
46
pub type ProtocolClerk = StmClerk < D > ;
47
47
48
- /// Alias of a wrapper of [MithrilStm:KeyReg](struct@mithril ::key_reg::KeyReg).
48
+ /// Alias of a wrapper of [MithrilStm:KeyReg](struct@mithril_stm ::key_reg::KeyReg).
49
49
pub type ProtocolKeyRegistration = KeyRegWrapper ;
50
50
51
- /// Alias of [MithrilStm:StmSig](struct@mithril ::stm::StmSig).
51
+ /// Alias of [MithrilStm:StmSig](struct@mithril_stm ::stm::StmSig).
52
52
pub type ProtocolSingleSignature = StmSig ;
53
53
54
- /// Alias of [MithrilStm:StmAggrSig](struct@mithril ::stm::StmAggrSig).
54
+ /// Alias of [MithrilStm:StmAggrSig](struct@mithril_stm ::stm::StmAggrSig).
55
55
pub type ProtocolMultiSignature = StmAggrSig < D > ;
56
56
57
- /// Alias of [MithrilStm:StmVerificationKeyPoP](type@mithril ::stm::StmVerificationKeyPoP).
57
+ /// Alias of [MithrilStm:StmVerificationKeyPoP](type@mithril_stm ::stm::StmVerificationKeyPoP).
58
58
pub type ProtocolSignerVerificationKey = StmVerificationKeyPoP ;
59
59
60
60
/// Alias of [KES:Sum6KesSig](https://github.com/input-output-hk/kes/blob/master/src/kes.rs).
61
61
pub type ProtocolSignerVerificationKeySignature = Sum6KesSig ;
62
62
63
- /// Alias of [MithrilStm:StmAggrVerificationKey](struct@mithril ::stm::StmAggrVerificationKey).
63
+ /// Alias of [MithrilStm:StmAggrVerificationKey](struct@mithril_stm ::stm::StmAggrVerificationKey).
64
64
pub type ProtocolAggregateVerificationKey = StmAggrVerificationKey < D > ;
65
65
66
66
/// Alias of [Ed25519:PublicKey](https://docs.rs/ed25519-dalek/latest/ed25519_dalek/struct.PublicKey.html).
@@ -73,17 +73,17 @@ pub type ProtocolGenesisSecretKey = ed25519_dalek::SecretKey;
73
73
pub type ProtocolGenesisSignature = ed25519_dalek:: Signature ;
74
74
75
75
// Error alias
76
- /// Alias of a wrapper of [MithrilStm:RegisterError](enum@mithril ::RegisterError).
76
+ /// Alias of a wrapper of [MithrilStm:RegisterError](enum@mithril_stm ::RegisterError).
77
77
pub type ProtocolRegistrationError = ProtocolRegistrationErrorWrapper ;
78
78
79
- /// Alias of [MithrilStm:AggregationError](enum@mithril ::AggregationError).
79
+ /// Alias of [MithrilStm:AggregationError](enum@mithril_stm ::AggregationError).
80
80
pub type ProtocolAggregationError = AggregationError ;
81
81
82
82
// Test only
83
- /// (Test only) Alias of [MithrilStm:StmInitializer](struct@mithril ::stm::StmInitializer).
83
+ /// (Test only) Alias of [MithrilStm:StmInitializer](struct@mithril_stm ::stm::StmInitializer).
84
84
#[ cfg( any( test, feature = "allow_skip_signer_certification" ) ) ]
85
85
pub type ProtocolInitializerNotCertified = StmInitializer ;
86
86
87
- /// (Test only) Alias of [MithrilStm:KeyReg](struct@mithril ::key_reg::KeyReg). (Test only)
87
+ /// (Test only) Alias of [MithrilStm:KeyReg](struct@mithril_stm ::key_reg::KeyReg). (Test only)
88
88
#[ cfg( any( test, feature = "allow_skip_signer_certification" ) ) ]
89
89
pub type ProtocolKeyRegistrationNotCertified = KeyReg ;
0 commit comments