Skip to content

Commit e410ee3

Browse files
authored
Merge pull request #711 from ethpandaops/pk910/fix-filtered-slots-view
fix validatator name filter on missed slots
2 parents 9907be4 + 8980e86 commit e410ee3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

services/chainservice_blocks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1090,7 +1090,7 @@ func (bs *ChainService) GetDbBlocksByFilter(ctx context.Context, filter *dbtypes
10901090
filter.MinTxCount == nil && filter.MaxTxCount == nil && filter.MinBlobCount == nil && filter.MaxBlobCount == nil && len(filter.ForkIds) == 0 &&
10911091
filter.BuilderIndex == nil && filter.WithPayloadMask&dbtypes.PayloadStatusMaskMissing != 0 && len(filter.EthBlockParentHash) == 0 && filter.MinGasUsed == nil &&
10921092
filter.MaxGasUsed == nil && filter.MinGasLimit == nil && filter.MaxGasLimit == nil && filter.MinBlockSize == nil && filter.MaxBlockSize == nil &&
1093-
filter.WithMevBlock == 0 && filter.ProposerIndex == nil && filter.ProposerName == ""
1093+
filter.WithMevBlock == 0
10941094

10951095
// If filtering by slot, only check missing for that specific slot
10961096
if filter.Slot != nil {

0 commit comments

Comments
 (0)