File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments