Files
prysm/beacon-chain/cache/private_access_test.go
Bastin 92bd211e4d upgrade v6 to v7 (#15989)
* upgrade v6 to v7

* changelog

* update-go-ssz
2025-11-06 16:16:23 +00:00

19 lines
361 B
Go

package cache
import (
"github.com/OffchainLabs/prysm/v7/beacon-chain/state"
lru "github.com/hashicorp/golang-lru"
)
func BalanceCacheKey(st state.ReadOnlyBeaconState) (string, error) {
return balanceCacheKey(st)
}
func MaxCheckpointStateSize() int {
return maxCheckpointStateSize
}
func (c *CheckpointStateCache) Cache() *lru.Cache {
return c.cache
}