Removed rmp-serde dependency

Also flattened the client message struct because theres no reason to
nest a 2-element map at the top level
This commit is contained in:
2026-05-16 14:32:08 -07:00
parent ba35808572
commit 457469fda9
3 changed files with 1 additions and 37 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ pub struct TaggedClientMessage {
pub struct SignedClientMessage {
message: ClientMessage,
// Should I enforce this being a ecdsa signature?
#[serde(with = "serde_bytes")]
#[serde(with = "serde_bytes",flatten)]
signature: Box<[u8]>
}