From 17bb5f78e6b76466d7a31663413f6fdc523178fb Mon Sep 17 00:00:00 2001 From: Arsenii Kulikov Date: Wed, 15 Jan 2025 17:44:48 +0400 Subject: [PATCH] fix --- examples/custom-evm/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/custom-evm/src/main.rs b/examples/custom-evm/src/main.rs index 180ae4b5521a..ac534d43c677 100644 --- a/examples/custom-evm/src/main.rs +++ b/examples/custom-evm/src/main.rs @@ -55,8 +55,8 @@ impl MyEvmConfig { impl MyEvmConfig { /// Sets the precompiles to the EVM handler /// - /// This will be invoked when the EVM is created via [ConfigureEvm::evm] or - /// [ConfigureEvm::evm_with_inspector] + /// This will be invoked when the EVM is created via [ConfigureEvm::evm_with_env] or + /// [ConfigureEvm::evm_with_env_and_inspector] /// /// This will use the default mainnet precompiles and add additional precompiles. pub fn set_precompiles(handler: &mut EvmHandler)