Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion turbo/execution/eth1/ethereum_execution.go
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ func (e *EthereumExecutionModule) ValidateChain(ctx context.Context, req *execut

// Update the last new block seen.
// This is used by eth_syncing as an heuristic to determine if the node is syncing or not.
if err := e.db.Update(ctx, func(tx kv.RwTx) error {
if err := e.db.UpdateNosync(ctx, func(tx kv.RwTx) error {
return rawdb.WriteLastNewBlockSeen(tx, req.Number)
}); err != nil {
return nil, err
Expand Down