Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix deposit counts in block & epoch indexes for post electra blocks #147

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions indexer/beacon/writedb.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ func (dbw *dbWriter) buildDbBlock(block *Block, epochStats *EpochStats, override
graffiti, _ := blockBody.Graffiti()
attestations, _ := blockBody.Attestations()
deposits, _ := blockBody.Deposits()
depositRequests, _ := getBlockExecutionDepositRequests(blockBody)
voluntaryExits, _ := blockBody.VoluntaryExits()
attesterSlashings, _ := blockBody.AttesterSlashings()
proposerSlashings, _ := blockBody.ProposerSlashings()
Expand All @@ -255,7 +256,7 @@ func (dbw *dbWriter) buildDbBlock(block *Block, epochStats *EpochStats, override
Graffiti: graffiti[:],
GraffitiText: utils.GraffitiToString(graffiti[:]),
AttestationCount: uint64(len(attestations)),
DepositCount: uint64(len(deposits)),
DepositCount: uint64(len(deposits) + len(depositRequests)),
ExitCount: uint64(len(voluntaryExits)),
AttesterSlashingCount: uint64(len(attesterSlashings)),
ProposerSlashingCount: uint64(len(proposerSlashings)),
Expand Down Expand Up @@ -361,6 +362,7 @@ func (dbw *dbWriter) buildDbEpoch(epoch phase0.Epoch, blocks []*Block, epochStat

attestations, _ := blockBody.Attestations()
deposits, _ := blockBody.Deposits()
depositRequests, _ := getBlockExecutionDepositRequests(blockBody)
voluntaryExits, _ := blockBody.VoluntaryExits()
attesterSlashings, _ := blockBody.AttesterSlashings()
proposerSlashings, _ := blockBody.ProposerSlashings()
Expand All @@ -370,7 +372,7 @@ func (dbw *dbWriter) buildDbEpoch(epoch phase0.Epoch, blocks []*Block, epochStat
executionWithdrawals, _ := blockBody.Withdrawals()

dbEpoch.AttestationCount += uint64(len(attestations))
dbEpoch.DepositCount += uint64(len(deposits))
dbEpoch.DepositCount += uint64(len(deposits) + len(depositRequests))
dbEpoch.ExitCount += uint64(len(voluntaryExits))
dbEpoch.AttesterSlashingCount += uint64(len(attesterSlashings))
dbEpoch.ProposerSlashingCount += uint64(len(proposerSlashings))
Expand Down
Loading