Trait StateCommitmentProvider
pub trait StateCommitmentProvider: Send + Sync {
type StateCommitment: StateCommitment;
}
Available on crate feature
db-api
only.Expand description
Trait implemented for database providers that can provide the [reth_trie_db::StateCommitment
]
type.
Required Associated Types§
type StateCommitment: StateCommitment
type StateCommitment: StateCommitment
The [reth_trie_db::StateCommitment
] type that can be used to perform state commitment
operations.