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.
2 parents c3a9d65 + d20d010 commit abaf493Copy full SHA for abaf493
libs/ur-registry/src/zcash/zcash_full_viewing_key.rs
@@ -42,12 +42,12 @@ impl<C> minicbor::Encode<C> for ZcashFullViewingKey {
42
) -> Result<(), minicbor::encode::Error<W::Error>> {
43
e.map(self.map_size())?;
44
45
- e.int(Int::from(KEY_DATA))?.bytes(&self.key_data)?;
46
-
47
e.int(Int::from(KEY_PATH))?
48
.tag(Tag::Unassigned(CRYPTO_KEYPATH.get_tag()))?;
49
CryptoKeyPath::encode(&self.key_path, e, _ctx)?;
50
+ e.int(Int::from(KEY_DATA))?.bytes(&self.key_data)?;
+
51
Ok(())
52
}
53
0 commit comments