Skip to content

Commit

Permalink
chore: make withdrawals pub (#1623)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Nov 6, 2024
1 parent 23357f2 commit eafe270
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/eips/src/eip4895.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl Withdrawal {
)]
#[cfg_attr(any(test, feature = "arbitrary"), derive(arbitrary::Arbitrary))]
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
pub struct Withdrawals(Vec<Withdrawal>);
pub struct Withdrawals(pub Vec<Withdrawal>);

impl Withdrawals {
/// Create a new Withdrawals instance.
Expand Down

0 comments on commit eafe270

Please sign in to comment.