From d4eb78730aa814eb0d146718861ef1df783020ae Mon Sep 17 00:00:00 2001 From: Tarrence van As Date: Fri, 11 Feb 2022 14:49:46 -0800 Subject: [PATCH] fix(types/proof): add address field (#899) --- ethers-core/src/types/proof.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ethers-core/src/types/proof.rs b/ethers-core/src/types/proof.rs index afb7ebe9..20c4ff8f 100644 --- a/ethers-core/src/types/proof.rs +++ b/ethers-core/src/types/proof.rs @@ -1,4 +1,4 @@ -use crate::types::{Bytes, H256, U256}; +use crate::types::{Address, Bytes, H256, U256}; use serde::{Deserialize, Serialize}; #[derive(Debug, Default, Clone, PartialEq, Deserialize, Serialize)] @@ -10,6 +10,7 @@ pub struct StorageProof { #[derive(Debug, Default, Clone, PartialEq, Deserialize, Serialize)] pub struct EIP1186ProofResponse { + address: Address, balance: U256, code_hash: H256, nonce: U256,