Skip to content

Commit fc6e952

Browse files
committed
remove todos
1 parent 6a01e5a commit fc6e952

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

core/vm/instructions.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,6 @@ func opBlockhashPostFeynman(pc *uint64, interpreter *EVMInterpreter, scope *Scop
485485
lower = upper - 256
486486
}
487487
if num64 >= lower && num64 < upper {
488-
// TODO: consider if we need to add block hash to state witness
489488
res := interpreter.evm.Context.GetHash(num64)
490489
num.SetBytes(res[:])
491490
} else {

eth/tracers/api.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,6 @@ func (api *API) StandardTraceBadBlockToFile(ctx context.Context, hash common.Has
595595
// executes all the transactions contained within. The return value will be one item
596596
// per transaction, dependent on the requestd tracer.
597597
func (api *API) traceBlock(ctx context.Context, block *types.Block, config *TraceConfig) ([]*txTraceResult, error) {
598-
// TODO: consider EIP-2935
599598
if block.NumberU64() == 0 {
600599
return nil, errors.New("genesis is not traceable")
601600
}

0 commit comments

Comments
 (0)