Skip to content

Commit

Permalink
chore: derive serde traits (#10198)
Browse files Browse the repository at this point in the history
  • Loading branch information
xJonathanLEI authored Aug 8, 2024
1 parent 71bf575 commit 75a501e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions crates/trie/common/src/proofs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ use alloy_trie::{
EMPTY_ROOT_HASH,
};
use reth_primitives_traits::{constants::KECCAK_EMPTY, Account};
use serde::{Deserialize, Serialize};
use std::collections::{BTreeMap, HashMap};

/// The state multiproof of target accounts and multiproofs of their storage tries.
Expand Down Expand Up @@ -119,7 +120,8 @@ impl StorageMultiProof {
}

/// The merkle proof with the relevant account info.
#[derive(PartialEq, Eq, Debug)]
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct AccountProof {
/// The address associated with the account.
pub address: Address,
Expand Down Expand Up @@ -174,7 +176,7 @@ impl AccountProof {
}

/// The merkle proof of the storage entry.
#[derive(PartialEq, Eq, Default, Debug)]
#[derive(Clone, PartialEq, Eq, Default, Debug, Serialize, Deserialize)]
pub struct StorageProof {
/// The raw storage key.
pub key: B256,
Expand Down

0 comments on commit 75a501e

Please sign in to comment.