mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-07 19:41:19 +00:00
3ab373787e
we need to extract this interface from the struct. i need to also break down the interface more, to better show what parts the caching is used, move some functions from the cache state to the underlying. don't merge
41 lines
1.0 KiB
Go
41 lines
1.0 KiB
Go
package state
|
|
|
|
import (
|
|
"github.com/ledgerwatch/erigon/metrics/methelp"
|
|
|
|
"github.com/ledgerwatch/erigon-lib/types/clonable"
|
|
)
|
|
|
|
func (b *CachingBeaconState) EncodeSSZ(buf []byte) ([]byte, error) {
|
|
h := methelp.NewHistTimer("encode_ssz_beacon_state_dur")
|
|
bts, err := b.BeaconState.EncodeSSZ(buf)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
h.PutSince()
|
|
sz := methelp.NewHistTimer("encode_ssz_beacon_state_size")
|
|
sz.Update(float64(len(bts)))
|
|
return bts, err
|
|
}
|
|
|
|
func (b *CachingBeaconState) DecodeSSZ(buf []byte, version int) error {
|
|
h := methelp.NewHistTimer("decode_ssz_beacon_state_dur")
|
|
if err := b.BeaconState.DecodeSSZ(buf, version); err != nil {
|
|
return err
|
|
}
|
|
sz := methelp.NewHistTimer("decode_ssz_beacon_state_size")
|
|
sz.Update(float64(len(buf)))
|
|
h.PutSince()
|
|
return b.initBeaconState()
|
|
}
|
|
|
|
// SSZ size of the Beacon State
|
|
func (b *CachingBeaconState) EncodingSizeSSZ() (size int) {
|
|
sz := b.BeaconState.EncodingSizeSSZ()
|
|
return sz
|
|
}
|
|
|
|
func (b *CachingBeaconState) Clone() clonable.Clonable {
|
|
return New(b.BeaconConfig())
|
|
}
|