mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 19:40:37 +00:00
d17996f8b0
* Update V3 from V4 * Fix build v3 -> v4 * Update ssz * Update beacon_chain.pb.go * Fix formatter import * Update update-mockgen.sh comment to v4 * Fix conflicts. Pass build and tests * Fix test
62 lines
1.8 KiB
Go
62 lines
1.8 KiB
Go
package state_native
|
|
|
|
import (
|
|
"github.com/pkg/errors"
|
|
customtypes "github.com/prysmaticlabs/prysm/v4/beacon-chain/state/state-native/custom-types"
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/state/state-native/types"
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/state/stateutil"
|
|
fieldparams "github.com/prysmaticlabs/prysm/v4/config/fieldparams"
|
|
)
|
|
|
|
// SetStateRoots for the beacon state. Updates the state roots
|
|
// to a new value by overwriting the previous value.
|
|
func (b *BeaconState) SetStateRoots(val [][]byte) error {
|
|
b.lock.Lock()
|
|
defer b.lock.Unlock()
|
|
|
|
b.sharedFieldReferences[types.StateRoots].MinusRef()
|
|
b.sharedFieldReferences[types.StateRoots] = stateutil.NewRef(1)
|
|
|
|
var rootsArr [fieldparams.StateRootsLength][32]byte
|
|
for i := 0; i < len(rootsArr); i++ {
|
|
copy(rootsArr[i][:], val[i])
|
|
}
|
|
roots := customtypes.StateRoots(rootsArr)
|
|
b.stateRoots = &roots
|
|
b.markFieldAsDirty(types.StateRoots)
|
|
b.rebuildTrie[types.StateRoots] = true
|
|
return nil
|
|
}
|
|
|
|
// UpdateStateRootAtIndex for the beacon state. Updates the state root
|
|
// at a specific index to a new value.
|
|
func (b *BeaconState) UpdateStateRootAtIndex(idx uint64, stateRoot [32]byte) error {
|
|
b.lock.RLock()
|
|
if uint64(len(b.stateRoots)) <= idx {
|
|
b.lock.RUnlock()
|
|
return errors.Errorf("invalid index provided %d", idx)
|
|
}
|
|
b.lock.RUnlock()
|
|
|
|
b.lock.Lock()
|
|
defer b.lock.Unlock()
|
|
|
|
// Check if we hold the only reference to the shared state roots slice.
|
|
r := b.stateRoots
|
|
if ref := b.sharedFieldReferences[types.StateRoots]; ref.Refs() > 1 {
|
|
// Copy elements in underlying array by reference.
|
|
roots := *b.stateRoots
|
|
rootsCopy := roots
|
|
r = &rootsCopy
|
|
ref.MinusRef()
|
|
b.sharedFieldReferences[types.StateRoots] = stateutil.NewRef(1)
|
|
}
|
|
|
|
r[idx] = stateRoot
|
|
b.stateRoots = r
|
|
|
|
b.markFieldAsDirty(types.StateRoots)
|
|
b.addDirtyIndices(types.StateRoots, []uint64{idx})
|
|
return nil
|
|
}
|