Skip to content

Commit 89f627a

Browse files
committed
chore: fix format
Signed-off-by: bkioshn <[email protected]>
1 parent b874c3e commit 89f627a

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

rust/rbac-registration/src/cardano/cip509/rbac/certs.rs

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,13 @@ impl Decode<'_, ()> for C509CertInMetadatumReference {
120120
arr.map(Some)
121121
},
122122
minicbor::data::Type::Null => Ok(None),
123-
_ => Ok(Some(vec![decode_helper(
124-
d,
125-
"C509CertInMetadatumReference",
126-
ctx,
127-
)?])),
123+
_ => {
124+
Ok(Some(vec![decode_helper(
125+
d,
126+
"C509CertInMetadatumReference",
127+
ctx,
128+
)?]))
129+
},
128130
}?;
129131
Ok(Self {
130132
txn_output_field,

rust/rbac-registration/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
//! This crate provides functionalities for RBAC registration.
22
33
pub mod cardano;
4-
pub(crate) mod utils;
4+
pub(crate) mod utils;

0 commit comments

Comments
 (0)