mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-08 12:01:20 +00:00
added finalized roots table (#915)
This commit is contained in:
parent
32eddc9df4
commit
a790ec764a
11
kv/tables.go
11
kv/tables.go
@ -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"
|
||||
|
||||
@ -589,7 +586,7 @@ var ChaindataTables = []string{
|
||||
// Beacon stuff
|
||||
BeaconState,
|
||||
BeaconBlocks,
|
||||
SlotRootIndex,
|
||||
FinalizedBlockRoots,
|
||||
RootSlotIndex,
|
||||
Attestetations,
|
||||
LightClient,
|
||||
|
Loading…
Reference in New Issue
Block a user