2020-03-14 16:31:21 +00:00
|
|
|
package stategen
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/state"
|
|
|
|
"go.opencensus.io/trace"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SaveState saves the state in the DB.
|
|
|
|
// It knows which cold and hot state section the input state should belong to.
|
|
|
|
func (s *State) SaveState(ctx context.Context, root [32]byte, state *state.BeaconState) error {
|
|
|
|
ctx, span := trace.StartSpan(ctx, "stateGen.SaveState")
|
|
|
|
defer span.End()
|
|
|
|
|
|
|
|
// The state belongs to the cold section if it's below the split slot threshold.
|
|
|
|
if state.Slot() < s.splitInfo.slot {
|
|
|
|
return s.saveColdState(ctx, root, state)
|
|
|
|
}
|
|
|
|
|
|
|
|
return s.saveHotState(ctx, root, state)
|
|
|
|
}
|
2020-05-08 19:02:48 +00:00
|
|
|
|
|
|
|
// DeleteHotStateInCache deletes the hot state entry from the cache.
|
|
|
|
func (s *State) DeleteHotStateInCache(root [32]byte) {
|
|
|
|
s.hotStateCache.Delete(root)
|
|
|
|
}
|