chore(trie): make SparseStateTrie generic with respect to trie implementation (#17205)

Co-authored-by: Alexey Shekhirin <5773434+shekhirin@users.noreply.github.com>
Co-authored-by: Claude <noreply@anthropic.com>
Co-authored-by: Federico Gimenez <federico.gimenez@gmail.com>
This commit is contained in:
Brian Picciano
2025-07-04 12:53:28 +02:00
committed by GitHub
parent 3457358880
commit 3b92a23599
6 changed files with 72 additions and 61 deletions

View File

@@ -46,7 +46,7 @@ pub mod prewarm;
pub mod sparse_trie;
/// Entrypoint for executing the payload.
#[derive(Debug, Clone)]
#[derive(Debug)]
pub struct PayloadProcessor<N, Evm>
where
N: NodePrimitives,