Skip to content

Commit 1fe775f

Browse files
Try to fix open-api errors
1 parent ae7c72b commit 1fe775f

File tree

1 file changed

+10
-0
lines changed
  • rust/catalyst-types/src/id_uri

1 file changed

+10
-0
lines changed

rust/catalyst-types/src/id_uri/mod.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -714,4 +714,14 @@ mod tests {
714714
let encoded_vk = base64_url::encode(vk.as_bytes());
715715
assert_eq!(encoded_vk, "1234");
716716
}
717+
718+
#[test]
719+
fn fixme_remove() {
720+
// example: Some("cardano/FftxFnOrj2qmTuB2oZG2v0YEWJfKvQ9Gg8AgNAhDsKE".into()),
721+
let id: IdUri = "cardano/FftxFnOrj2qmTuB2oZG2v0YEWJfKvQ9Gg8AgNAhDsKE"
722+
.parse()
723+
.unwrap();
724+
println!("{:?}", id.role0_pk.as_bytes());
725+
todo!();
726+
}
717727
}

0 commit comments

Comments
 (0)