From 8698221faefd247b0dfde8974575854f9dc8f068 Mon Sep 17 00:00:00 2001 From: Sina Mahmoodi Date: Mon, 6 May 2024 16:06:16 +0200 Subject: [PATCH] default timestamp bump to 12 --- internal/ethapi/simulate.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ethapi/simulate.go b/internal/ethapi/simulate.go index e8ee10cc0a..44d2d05314 100644 --- a/internal/ethapi/simulate.go +++ b/internal/ethapi/simulate.go @@ -414,7 +414,7 @@ func makeHeaders(config *params.ChainConfig, blocks []simBlock, base *types.Head prevNumber = overrides.Number.ToInt().Uint64() if overrides.Time == nil { - t := prevTimestamp + 1 + t := prevTimestamp + 12 overrides.Time = (*hexutil.Uint64)(&t) } else if time := (*uint64)(overrides.Time); *time <= prevTimestamp { return nil, &invalidBlockTimestampError{fmt.Sprintf("block timestamps must be in order: %d <= %d", *time, prevTimestamp)}