Skip to content

Commit 26f7b4d

Browse files
committed
fix(cardano-blockchain-types): fix visibility and comment
Signed-off-by: bkioshn <[email protected]>
1 parent a723e32 commit 26f7b4d

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

rust/cardano-blockchain-types/src/cip36/key_registration.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ pub struct Cip36KeyRegistration {
4343
pub payment_addr: Option<ShelleyAddress>,
4444
/// Nonce (nonce that has been slot corrected).
4545
/// Field 4 in the CIP-36 61284 Spec.
46-
// FIXME: set this nonce
4746
pub nonce: u64,
4847
/// Registration Purpose (Always 0 for Catalyst).
4948
/// Field 5 in the CIP-36 61284 Spec.

rust/cardano-blockchain-types/src/cip36/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ use crate::{MetadatumValue, Network};
1616
#[derive(Clone, Default)]
1717
pub struct Cip36 {
1818
/// Key registration - 61284
19-
pub key_registration: Cip36KeyRegistration,
19+
key_registration: Cip36KeyRegistration,
2020
/// Registration witness - 61285
21-
pub registration_witness: Cip36RegistrationWitness,
21+
registration_witness: Cip36RegistrationWitness,
2222
/// Is this a Catalyst strict registration?
23-
pub is_catalyst_strict: bool,
23+
is_catalyst_strict: bool,
2424
}
2525

2626
/// Validation value for CIP-36.

0 commit comments

Comments
 (0)