From 16c3933662eda5147a192f2fd9d4699253d43e70 Mon Sep 17 00:00:00 2001 From: rakita Date: Sat, 10 Aug 2024 12:19:13 +0200 Subject: [PATCH] typo --- crates/primitives/src/eip7702/bytecode.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/primitives/src/eip7702/bytecode.rs b/crates/primitives/src/eip7702/bytecode.rs index 2ffe58efa7..a7d5b95f02 100644 --- a/crates/primitives/src/eip7702/bytecode.rs +++ b/crates/primitives/src/eip7702/bytecode.rs @@ -32,7 +32,7 @@ impl Eip7702Bytecode { return None; } - // Only suported version is version 0. + // Only supported version is version 0. if raw[2] != EIP7702_VERSION { return None; }