mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-08 20:11:21 +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"
|
BeaconState = "BeaconState"
|
||||||
// [slot] => [signature + block without execution payload]
|
// [slot] => [signature + block without execution payload]
|
||||||
BeaconBlocks = "BeaconBlock"
|
BeaconBlocks = "BeaconBlock"
|
||||||
// [slot] => [attestation list (ssz)]
|
// [slot] => [attestation list (custom encoding)]
|
||||||
Attestetations = "Attestetations"
|
Attestetations = "Attestetations"
|
||||||
|
// [slot] => [Finalized block root]
|
||||||
// Erigon-CL indexing
|
FinalizedBlockRoots = "FinalizedBlockRoots"
|
||||||
|
|
||||||
// [Slot] => [Root (block root/state root/eth1 root)]
|
|
||||||
SlotRootIndex = "SlotRootIndex"
|
|
||||||
// [Root (block root/state root/eth1 root)] => Slot
|
// [Root (block root/state root/eth1 root)] => Slot
|
||||||
RootSlotIndex = "RootSlotIndex"
|
RootSlotIndex = "RootSlotIndex"
|
||||||
|
|
||||||
@ -589,7 +586,7 @@ var ChaindataTables = []string{
|
|||||||
// Beacon stuff
|
// Beacon stuff
|
||||||
BeaconState,
|
BeaconState,
|
||||||
BeaconBlocks,
|
BeaconBlocks,
|
||||||
SlotRootIndex,
|
FinalizedBlockRoots,
|
||||||
RootSlotIndex,
|
RootSlotIndex,
|
||||||
Attestetations,
|
Attestetations,
|
||||||
LightClient,
|
LightClient,
|
||||||
|
Loading…
Reference in New Issue
Block a user