From a84f58bcb8e329999d842716e604ff97477c8970 Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 18 Nov 2024 13:00:57 +0100 Subject: [PATCH] chore: use keccak256 from alloy (#12628) --- crates/trie/common/src/key.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/trie/common/src/key.rs b/crates/trie/common/src/key.rs index 9e440d199..71f8019bf 100644 --- a/crates/trie/common/src/key.rs +++ b/crates/trie/common/src/key.rs @@ -1,5 +1,4 @@ -use alloy_primitives::B256; -use revm_primitives::keccak256; +use alloy_primitives::{keccak256, B256}; /// Trait for hashing keys in state. pub trait KeyHasher: Default + Clone + Send + Sync + 'static {