From 96fac10f080b09f7139122f9395384e7e6361b6f Mon Sep 17 00:00:00 2001 From: Dan Cline <6798349+Rjected@users.noreply.github.com> Date: Wed, 12 Jun 2024 16:50:01 -0400 Subject: [PATCH] chore: update EIP7002 withdrawal requests based on spec --- crates/eips/src/eip7002.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/eips/src/eip7002.rs b/crates/eips/src/eip7002.rs index 0fdf755f3b5..9678efe22ff 100644 --- a/crates/eips/src/eip7002.rs +++ b/crates/eips/src/eip7002.rs @@ -35,7 +35,7 @@ pub struct WithdrawalRequest { /// Address of the source of the exit. pub source_address: Address, /// Validator public key. - pub validator_public_key: FixedBytes<48>, + pub validator_pubkey: FixedBytes<48>, /// Amount of withdrawn ether in gwei. #[cfg_attr(feature = "serde", serde(with = "alloy_serde::quantity"))] pub amount: u64,