mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 20:07:17 +00:00
a069738c20
* update shared/params * update eth2-types deps * update protobufs * update shared/* * fix testutil/state * update beacon-chain/state * update beacon-chain/db * update tests * fix test * update beacon-chain/core * update beacon-chain/blockchain * update beacon-chain/cache * beacon-chain/forkchoice * update beacon-chain/operations * update beacon-chain/p2p * update beacon-chain/rpc * update sync/initial-sync * update deps * update deps * go fmt * update beacon-chain/sync * update endtoend/ * bazel build //beacon-chain - works w/o issues * update slasher code * udpate tools/ * update validator/ * update fastssz * fix build * fix test building * update tests * update ethereumapis deps * fix tests * update state/stategen * fix build * fix test * add FarFutureSlot * go imports * Radek's suggestions * Ivan's suggestions * type conversions * Nishant's suggestions * add more tests to rpc_send_request * fix test * clean up * fix conflicts Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: nisdas <nishdas93@gmail.com>
63 lines
1.6 KiB
Go
63 lines
1.6 KiB
Go
package kv
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
|
|
types "github.com/prysmaticlabs/eth2-types"
|
|
ethpb "github.com/prysmaticlabs/ethereumapis/eth/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
|
bolt "go.etcd.io/bbolt"
|
|
)
|
|
|
|
var migrationArchivedIndex0Key = []byte("archive_index_0")
|
|
|
|
func migrateArchivedIndex(tx *bolt.Tx) error {
|
|
mb := tx.Bucket(migrationsBucket)
|
|
if b := mb.Get(migrationArchivedIndex0Key); bytes.Equal(b, migrationCompleted) {
|
|
return nil // Migration already completed.
|
|
}
|
|
|
|
bkt := tx.Bucket(archivedRootBucket)
|
|
if bkt == nil {
|
|
return nil
|
|
}
|
|
// Remove "last archived index" key before iterating over all keys.
|
|
if err := bkt.Delete(lastArchivedIndexKey); err != nil {
|
|
return err
|
|
}
|
|
|
|
var highest types.Slot
|
|
c := bkt.Cursor()
|
|
for k, v := c.First(); k != nil; k, v = c.Next() {
|
|
// Look up actual slot from block
|
|
b := tx.Bucket(blocksBucket).Get(v)
|
|
// Skip this key if there is no block for whatever reason.
|
|
if b == nil {
|
|
continue
|
|
}
|
|
blk := ðpb.SignedBeaconBlock{}
|
|
if err := decode(context.TODO(), b, blk); err != nil {
|
|
return err
|
|
}
|
|
if err := tx.Bucket(stateSlotIndicesBucket).Put(bytesutil.SlotToBytesBigEndian(blk.Block.Slot), v); err != nil {
|
|
return err
|
|
}
|
|
if blk.Block.Slot > highest {
|
|
highest = blk.Block.Slot
|
|
}
|
|
}
|
|
|
|
// Delete deprecated buckets.
|
|
for _, bkt := range [][]byte{slotsHasObjectBucket, archivedRootBucket} {
|
|
if tx.Bucket(bkt) != nil {
|
|
if err := tx.DeleteBucket(bkt); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
|
|
// Mark migration complete.
|
|
return mb.Put(migrationArchivedIndex0Key, migrationCompleted)
|
|
}
|