Update simulated_beacon.go

This commit is contained in:
Felix Lange 2025-04-17 10:43:46 +02:00 committed by GitHub
parent fc45fee370
commit 30923fc98c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -128,7 +128,7 @@ func NewSimulatedBeacon(period uint64, feeRecipient common.Address, eth *eth.Eth
// cap the dev mode period to a reasonable maximum value to avoid
// overflowing the time.Duration (int64) that it will occupy
const maxPeriod = math.MaxInt64 / time.Second
const maxPeriod = uint64(math.MaxInt64 / time.Second)
return &SimulatedBeacon{
eth: eth,
period: min(period, maxPeriod),