fix: public key serialization

This removes deserialixation from the secret key
and related types as it is not needed and it's
broken. It would be best to fix this at some point.
This commit is contained in:
thesimplekid
2023-09-03 14:06:27 +01:00
parent 27c2d89c34
commit fd955f22cb
11 changed files with 40 additions and 48 deletions

View File

@@ -66,7 +66,7 @@ pub mod mint {
use crate::nuts::nut01::mint::{KeyPair, Keys};
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
pub struct KeySet {
pub id: String,
pub keys: Keys,