File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
beacon_node/execution_layer/src/engine_api Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -838,10 +838,10 @@ impl TryFrom<JsonClientVersionV1> for ClientVersionV1 {
838838pub struct JsonDepositRequest {
839839 pub pubkey : PublicKeyBytes ,
840840 pub withdrawal_credentials : Hash256 ,
841- #[ serde( with = "serde_utils::quoted_u64 " ) ]
841+ #[ serde( with = "serde_utils::u64_hex_be " ) ]
842842 pub amount : u64 ,
843843 pub signature : Signature ,
844- #[ serde( with = "serde_utils::quoted_u64 " ) ]
844+ #[ serde( with = "serde_utils::u64_hex_be " ) ]
845845 pub index : u64 ,
846846}
847847
@@ -874,7 +874,7 @@ impl From<JsonDepositRequest> for DepositReceipt {
874874pub struct JsonWithdrawalRequest {
875875 pub source_address : Address ,
876876 pub validator_public_key : PublicKeyBytes ,
877- #[ serde( with = "serde_utils::quoted_u64 " ) ]
877+ #[ serde( with = "serde_utils::u64_hex_be " ) ]
878878 pub amount : u64 ,
879879}
880880
You can’t perform that action at this time.
0 commit comments