mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-10 11:41:21 +00:00
40 lines
1013 B
Go
40 lines
1013 B
Go
|
package state_native_test
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
state_native "github.com/prysmaticlabs/prysm/v4/beacon-chain/state/state-native"
|
||
|
"github.com/prysmaticlabs/prysm/v4/config/params"
|
||
|
eth "github.com/prysmaticlabs/prysm/v4/proto/prysm/v1alpha1"
|
||
|
ethpb "github.com/prysmaticlabs/prysm/v4/proto/prysm/v1alpha1"
|
||
|
"github.com/prysmaticlabs/prysm/v4/testing/require"
|
||
|
)
|
||
|
|
||
|
func BenchmarkAppendEth1DataVotes(b *testing.B) {
|
||
|
st, err := state_native.InitializeFromProtoPhase0(ðpb.BeaconState{})
|
||
|
require.NoError(b, err)
|
||
|
|
||
|
max := params.BeaconConfig().Eth1DataVotesLength()
|
||
|
|
||
|
if max < 2 {
|
||
|
b.Fatalf("Eth1DataVotesLength is less than 2")
|
||
|
}
|
||
|
|
||
|
for i := uint64(0); i < max-2; i++ {
|
||
|
err := st.AppendEth1DataVotes(ðpb.Eth1Data{
|
||
|
DepositCount: i,
|
||
|
DepositRoot: make([]byte, 64),
|
||
|
BlockHash: make([]byte, 64),
|
||
|
})
|
||
|
require.NoError(b, err)
|
||
|
}
|
||
|
|
||
|
ref := st.Copy()
|
||
|
|
||
|
for i := 0; i < b.N; i++ {
|
||
|
err := ref.AppendEth1DataVotes(ð.Eth1Data{DepositCount: uint64(i)})
|
||
|
require.NoError(b, err)
|
||
|
ref = st.Copy()
|
||
|
}
|
||
|
}
|