From 68e0bfe248d11f57b2500c1bad82f3c476db5f72 Mon Sep 17 00:00:00 2001 From: Matt Gibson Date: Wed, 21 Jan 2026 13:01:23 -0800 Subject: [PATCH] fix history params deserialization it doesn't seem to be possible to deserialize internally tagged enums that don't all have data. --- akd/crates/reader/src/routes/key_history.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/akd/crates/reader/src/routes/key_history.rs b/akd/crates/reader/src/routes/key_history.rs index f2326132a9..07d6b93121 100644 --- a/akd/crates/reader/src/routes/key_history.rs +++ b/akd/crates/reader/src/routes/key_history.rs @@ -19,7 +19,6 @@ pub struct KeyHistoryRequest { /// The parameters that dictate how much of the history proof to return to the consumer /// (either a complete history, or some limited form). #[derive(Copy, Clone, Serialize, Deserialize, Debug)] -#[serde(tag = "type")] pub enum HistoryParams { /// Returns a complete history for a label Complete,