From 381bbaba94df0ba23a267f92038f4637942fd2d3 Mon Sep 17 00:00:00 2001 From: realbigsean Date: Wed, 19 Jun 2024 17:04:47 -0400 Subject: [PATCH] ensure aggregate and proof uses serde untagged on ref --- consensus/types/src/aggregate_and_proof.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/types/src/aggregate_and_proof.rs b/consensus/types/src/aggregate_and_proof.rs index ae80369130..6ae0df4ad7 100644 --- a/consensus/types/src/aggregate_and_proof.rs +++ b/consensus/types/src/aggregate_and_proof.rs @@ -31,7 +31,7 @@ use tree_hash_derive::TreeHash; ), ref_attributes( derive(Debug, PartialEq, TreeHash, Serialize,), - serde(bound = "E: EthSpec"), + serde(untagged, bound = "E: EthSpec"), tree_hash(enum_behaviour = "transparent") ) )]