erigon-pulse/cmd/erigon-cl/core/state/ssz.go
a fd6acd4b31
[Caplin] beginnings of instrumentation (#7486)
this pr is ready for review, but it is waiting on this PR 

https://github.com/VictoriaMetrics/metrics/pull/45

so that we do not need to use a replace directive.
2023-05-11 18:38:56 +02:00

41 lines
1010 B
Go

package state
import (
"github.com/ledgerwatch/erigon/metrics/methelp"
"github.com/ledgerwatch/erigon-lib/types/clonable"
)
func (b *BeaconState) 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 *BeaconState) 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 *BeaconState) EncodingSizeSSZ() (size int) {
sz := b.BeaconState.EncodingSizeSSZ()
return sz
}
func (b *BeaconState) Clone() clonable.Clonable {
return New(b.BeaconConfig())
}