mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
feat(trie): pass state reference to StateProofProvider::proof (#9308)
This commit is contained in:
@ -79,7 +79,12 @@ impl StateRootProvider for StateProviderTest {
|
||||
}
|
||||
|
||||
impl StateProofProvider for StateProviderTest {
|
||||
fn proof(&self, _address: Address, _slots: &[B256]) -> ProviderResult<AccountProof> {
|
||||
fn proof(
|
||||
&self,
|
||||
_state: &BundleState,
|
||||
_address: Address,
|
||||
_slots: &[B256],
|
||||
) -> ProviderResult<AccountProof> {
|
||||
unimplemented!("proof generation is not supported")
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user