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

Electra support (without SSZ) #66

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Changes from 1 commit
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
Next Next commit
trigger ci
pk910 committed May 16, 2024
commit 8d1050530ae44eee5bc3246199f2d1828b3bd19d
1 change: 1 addition & 0 deletions rpc/beaconapi.go
Original file line number Diff line number Diff line change
@@ -150,6 +150,7 @@ func (bc *BeaconClient) Initialize() error {
// TODO (when upstream PR is merged)
//http.WithConnectionCheck(false),
http.WithCustomSpecSupport(true),
http.WithEnforceJSON(true),
}

// set log level

Unchanged files with check annotations Beta

return dbDeposits
}
func buildDbConsolidations(block *CacheBlock) []*dbtypes.Consolidation {

Check failure on line 357 in indexer/write_db.go

GitHub Actions / Run code checks / Run code checks

func buildDbConsolidations is unused (U1000)
blockBody := block.GetBlockBody()
if blockBody == nil {
return nil
return dbConsolidations
}
func persistBlockConsolidations(block *CacheBlock, orphaned bool, tx *sqlx.Tx) error {

Check failure on line 386 in indexer/write_db.go

GitHub Actions / Run code checks / Run code checks

func persistBlockConsolidations is unused (U1000)
// insert deposits
dbConsolidations := buildDbConsolidations(block)
if orphaned {