Skip to content

Commit b993a43

Browse files
committed
fix: a couple of CI issues
1 parent 19d8466 commit b993a43

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

core/types/block.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,6 @@ func CopyHeader(h *Header) *Header {
309309
}
310310
if h.ExecutionWitness != nil {
311311
cpy.ExecutionWitness = h.ExecutionWitness.Copy()
312-
313312
}
314313
return &cpy
315314
}

core/vm/interpreter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ func (in *EVMInterpreter) Run(contract *Contract, input []byte, readOnly bool) (
179179
logged, pcCopy, gasCopy = false, pc, contract.Gas
180180
}
181181

182-
if in.evm.chainRules.IsCancun && !contract.IsDeployment {
182+
if in.evm.chainRules.IsPrague && !contract.IsDeployment {
183183
// if the PC ends up in a new "chunk" of verkleized code, charge the
184184
// associated costs.
185185
contractAddr := contract.Address()

0 commit comments

Comments
 (0)