From 661d178437b001811d4578a2035d15a816562360 Mon Sep 17 00:00:00 2001 From: tgmichel Date: Fri, 9 Dec 2022 00:24:22 +0100 Subject: [PATCH] Fix CI clippy (#937) --- frame/evm/src/runner/stack.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frame/evm/src/runner/stack.rs b/frame/evm/src/runner/stack.rs index ce2c8d14f6f61..82926bf2c4f67 100644 --- a/frame/evm/src/runner/stack.rs +++ b/frame/evm/src/runner/stack.rs @@ -137,7 +137,7 @@ where // of a precompile. While mainnet Ethereum currently only has stateless precompiles, // projects using Frontier can have stateful precompiles that can manage funds or // which calls other contracts that expects this precompile address to be trustworthy. - if !>::get(&source).is_empty() || precompiles.is_precompile(source) { + if !>::get(source).is_empty() || precompiles.is_precompile(source) { return Err(RunnerError { error: Error::::TransactionMustComeFromEOA, weight,