eth/catalyst: fix (*SimulatedBeacon).AdjustTime() conversion (#30138)

This commit is contained in:
Jordan Krage 2024-07-16 04:47:11 -05:00 committed by GitHub
parent 71210b0630
commit 0d38b0cd34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

@ -302,7 +302,7 @@ func (c *SimulatedBeacon) AdjustTime(adjustment time.Duration) error {
return errors.New("parent not found") return errors.New("parent not found")
} }
withdrawals := c.withdrawals.gatherPending(10) withdrawals := c.withdrawals.gatherPending(10)
return c.sealBlock(withdrawals, parent.Time+uint64(adjustment)) return c.sealBlock(withdrawals, parent.Time+uint64(adjustment/time.Second))
} }
func RegisterSimulatedBeaconAPIs(stack *node.Node, sim *SimulatedBeacon) { func RegisterSimulatedBeaconAPIs(stack *node.Node, sim *SimulatedBeacon) {

@ -106,7 +106,7 @@ func TestAdjustTime(t *testing.T) {
block2, _ := client.BlockByNumber(context.Background(), nil) block2, _ := client.BlockByNumber(context.Background(), nil)
prevTime := block1.Time() prevTime := block1.Time()
newTime := block2.Time() newTime := block2.Time()
if newTime-prevTime != uint64(time.Minute) { if newTime-prevTime != 60 {
t.Errorf("adjusted time not equal to 60 seconds. prev: %v, new: %v", prevTime, newTime) t.Errorf("adjusted time not equal to 60 seconds. prev: %v, new: %v", prevTime, newTime)
} }
} }