forked from paradigmxyz/reth
-
Notifications
You must be signed in to change notification settings - Fork 10
Add test for Debug impl for OpProofsStateProviderRef #434
Copy link
Copy link
Closed
Labels
A-trieArea: Merkle Patricia TrieArea: Merkle Patricia TrieK-testKind: testKind: testM-good-first-issueMeta: good issue for first time contributorsMeta: good issue for first time contributorsW-historical-proofsWorkstream: historical-proofsWorkstream: historical-proofs
Description
Describe the feature
Add test for
op-reth/crates/optimism/trie/src/provider.rs
Lines 44 to 54 in b129588
| impl<'a, Storage> Debug for OpProofsStateProviderRef<'a, Storage> | |
| where | |
| Storage: OpProofsStore + 'a + Debug, | |
| { | |
| fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { | |
| f.debug_struct("OpProofsStateProviderRef") | |
| .field("storage", &self.storage) | |
| .field("block_number", &self.block_number) | |
| .finish() | |
| } | |
| } |
Additional context
No response
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
A-trieArea: Merkle Patricia TrieArea: Merkle Patricia TrieK-testKind: testKind: testM-good-first-issueMeta: good issue for first time contributorsMeta: good issue for first time contributorsW-historical-proofsWorkstream: historical-proofsWorkstream: historical-proofs
Type
Projects
Status
Done