Skip to content

Commit

Permalink
Merge pull request #2595 from gobitfly/NOBIDS/fix_orphaned_attestations
Browse files Browse the repository at this point in the history
(NOBIDS) fix orphaned attestation view
  • Loading branch information
recy21 authored Oct 9, 2023
2 parents 578bf75 + 53de811 commit 2a68fce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db/bigtable.go
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,7 @@ func (bigtable *Bigtable) GetValidatorAttestationHistory(validators []uint64, st
res := make(map[uint64][]*types.ValidatorAttestation, len(validators))
resMux := &sync.Mutex{}

filter := gcp_bigtable.LatestNFilter(1)
filter := gcp_bigtable.LatestNFilter(32)

g, gCtx := errgroup.WithContext(ctx)
g.SetLimit(concurrency)
Expand Down Expand Up @@ -1421,7 +1421,7 @@ func (bigtable *Bigtable) GetValidatorMissedAttestationHistory(validators []uint

resMux := &sync.Mutex{}

filter := gcp_bigtable.LatestNFilter(1)
filter := gcp_bigtable.LatestNFilter(32)

g, gCtx := errgroup.WithContext(ctx)
g.SetLimit(concurrency)
Expand Down

0 comments on commit 2a68fce

Please sign in to comment.