From b66c376e5295edeff2b1b10e832810990e2354d2 Mon Sep 17 00:00:00 2001 From: Zhang Zhuo Date: Mon, 11 Sep 2023 09:40:27 +0800 Subject: [PATCH] Update callop.rs --- bus-mapping/src/evm/opcodes/callop.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bus-mapping/src/evm/opcodes/callop.rs b/bus-mapping/src/evm/opcodes/callop.rs index 54f36773e7..2db9fbc31d 100644 --- a/bus-mapping/src/evm/opcodes/callop.rs +++ b/bus-mapping/src/evm/opcodes/callop.rs @@ -176,7 +176,7 @@ impl Opcode for CallOpcode { let is_precompile = code_address .map(|ref addr| is_precompiled(addr)) .unwrap_or(false); - // CALLCODE does not need to do real transfer. + // CALLCODE does not need to do real transfer // Transfer value only when all these conditions met: // - The opcode is CALL // - The precheck passed