chore: change field order (#4348)

This commit is contained in:
Matthias Seitz
2023-08-24 16:56:54 +02:00
committed by GitHub
parent 2801e686f1
commit 20ea9c9237

View File

@ -71,8 +71,8 @@ pub enum Delta<T> {
#[serde(rename_all = "camelCase")]
pub struct AccountDiff {
pub balance: Delta<U256>,
pub nonce: Delta<U64>,
pub code: Delta<Bytes>,
pub nonce: Delta<U64>,
pub storage: BTreeMap<H256, Delta<H256>>,
}