Skip to content

Commit

Permalink
added finalized roots table (ledgerwatch#915)
Browse files Browse the repository at this point in the history
  • Loading branch information
Giulio2002 authored Mar 5, 2023
1 parent 32eddc9 commit a790ec7
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions kv/tables.go
Original file line number Diff line number Diff line change
Expand Up @@ -427,13 +427,10 @@ const (
BeaconState = "BeaconState"
// [slot] => [signature + block without execution payload]
BeaconBlocks = "BeaconBlock"
// [slot] => [attestation list (ssz)]
// [slot] => [attestation list (custom encoding)]
Attestetations = "Attestetations"

// Erigon-CL indexing

// [Slot] => [Root (block root/state root/eth1 root)]
SlotRootIndex = "SlotRootIndex"
// [slot] => [Finalized block root]
FinalizedBlockRoots = "FinalizedBlockRoots"
// [Root (block root/state root/eth1 root)] => Slot
RootSlotIndex = "RootSlotIndex"

Expand Down Expand Up @@ -589,7 +586,7 @@ var ChaindataTables = []string{
// Beacon stuff
BeaconState,
BeaconBlocks,
SlotRootIndex,
FinalizedBlockRoots,
RootSlotIndex,
Attestetations,
LightClient,
Expand Down

0 comments on commit a790ec7

Please sign in to comment.