Skip to content

Commit

Permalink
feat(cannon): Change committee request structure
Browse files Browse the repository at this point in the history
  • Loading branch information
samcm committed Aug 5, 2024
1 parent dfa7591 commit a310702
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cannon/deriver/beacon/eth/v1/beacon_committee.go
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ func (b *BeaconCommitteeDeriver) processEpoch(ctx context.Context, epoch phase0.
defer span.End()

// Get the beacon committees for this epoch
beaconCommittees, err := b.beacon.Node().FetchBeaconCommittees(ctx, xatuethv1.StateIDFinalized, &epoch)
beaconCommittees, err := b.beacon.Node().FetchBeaconCommittees(ctx, fmt.Sprintf("%d", epoch), nil)
if err != nil {
return nil, errors.Wrap(err, "failed to fetch beacon committees")
}
Expand Down

0 comments on commit a310702

Please sign in to comment.