mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
a9a4bb9163
* move testutil * util pkg * build * gaz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
21 lines
468 B
Go
21 lines
468 B
Go
package kv_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/operations/attestations/kv"
|
|
ethpb "github.com/prysmaticlabs/prysm/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/testing/assert"
|
|
)
|
|
|
|
func BenchmarkAttCaches(b *testing.B) {
|
|
ac := kv.NewAttCaches()
|
|
|
|
att := ðpb.Attestation{}
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
assert.NoError(b, ac.SaveUnaggregatedAttestation(att))
|
|
assert.NoError(b, ac.DeleteAggregatedAttestation(att))
|
|
}
|
|
}
|