We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b874c3e commit 89f627aCopy full SHA for 89f627a
rust/rbac-registration/src/cardano/cip509/rbac/certs.rs
@@ -120,11 +120,13 @@ impl Decode<'_, ()> for C509CertInMetadatumReference {
120
arr.map(Some)
121
},
122
minicbor::data::Type::Null => Ok(None),
123
- _ => Ok(Some(vec![decode_helper(
124
- d,
125
- "C509CertInMetadatumReference",
126
- ctx,
127
- )?])),
+ _ => {
+ Ok(Some(vec![decode_helper(
+ d,
+ "C509CertInMetadatumReference",
+ ctx,
128
+ )?]))
129
+ },
130
}?;
131
Ok(Self {
132
txn_output_field,
rust/rbac-registration/src/lib.rs
@@ -1,4 +1,4 @@
1
//! This crate provides functionalities for RBAC registration.
2
3
pub mod cardano;
4
-pub(crate) mod utils;
+pub(crate) mod utils;
0 commit comments