chore(db): Remove Sync from DbTx (#20516)

This commit is contained in:
Brian Picciano
2025-12-22 11:13:57 +01:00
committed by GitHub
parent 3b8acd4b07
commit 7b2fbdcd51
45 changed files with 187 additions and 151 deletions

View File

@@ -9,7 +9,7 @@ use revm::{bytecode::Bytecode, state::AccountInfo, Database, DatabaseRef};
/// A helper trait responsible for providing state necessary for EVM execution.
///
/// This serves as the data layer for [`Database`].
pub trait EvmStateProvider: Send + Sync {
pub trait EvmStateProvider {
/// Get basic account information.
///
/// Returns [`None`] if the account doesn't exist.