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 ae7c72b commit 1fe775fCopy full SHA for 1fe775f
rust/catalyst-types/src/id_uri/mod.rs
@@ -714,4 +714,14 @@ mod tests {
714
let encoded_vk = base64_url::encode(vk.as_bytes());
715
assert_eq!(encoded_vk, "1234");
716
}
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
+ }
727
0 commit comments