Skip to content

Commit

Permalink
eth/catalyst: use block as finalization (#28000)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjl493456442 authored Aug 24, 2023
1 parent 45b198d commit 1a21350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eth/catalyst/tester.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func (tester *FullSyncTester) Start() error {
}
// Trigger beacon sync with the provided block header as
// trusted chain head.
err := tester.api.eth.Downloader().BeaconSync(downloader.FullSync, tester.block.Header(), nil)
err := tester.api.eth.Downloader().BeaconSync(downloader.FullSync, tester.block.Header(), tester.block.Header())
if err != nil {
log.Info("Failed to beacon sync", "err", err)
}
Expand Down

0 comments on commit 1a21350

Please sign in to comment.