mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
d17996f8b0
* Update V3 from V4 * Fix build v3 -> v4 * Update ssz * Update beacon_chain.pb.go * Fix formatter import * Update update-mockgen.sh comment to v4 * Fix conflicts. Pass build and tests * Fix test
21 lines
477 B
Go
21 lines
477 B
Go
package kv_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/prysmaticlabs/prysm/v4/beacon-chain/operations/attestations/kv"
|
|
ethpb "github.com/prysmaticlabs/prysm/v4/proto/prysm/v1alpha1"
|
|
"github.com/prysmaticlabs/prysm/v4/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))
|
|
}
|
|
}
|