Skip to content

Commit 25d3b6a

Browse files
committed
comment clean-up
Signed-off-by: garyschulte <garyschulte@gmail.com>
1 parent cdfa717 commit 25d3b6a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/interpreter/opcodes/call.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ fn callImpl(
227227
const sub_gas_limit: u64 = forwarded +| stipend;
228228

229229
// Deduct base cost then the forwarded amount from this frame's gas.
230-
// EIP-v5.5.1: regular gas (base + forwarded) must be charged before state gas.
230+
// regular gas (base + forwarded) must be charged before state gas.
231231
if (!ctx.interpreter.gas.spend(base_cost)) {
232232
ctx.interpreter.halt(.out_of_gas);
233233
return;

src/interpreter/opcodes/host_ops.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -614,7 +614,7 @@ pub fn opSelfdestruct(ctx: *InstructionContext) void {
614614
dyn_gas += 25000;
615615
}
616616

617-
// EIP-v5.5.1: regular gas before state gas.
617+
// regular gas before state gas.
618618
if (!ctx.interpreter.gas.spend(dyn_gas)) {
619619
ctx.interpreter.halt(.out_of_gas);
620620
return;

0 commit comments

Comments
 (0)