mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
a860648960
* remove all mentions * more changes * folder by folder Co-authored-by: terence tsao <terence@prysmaticlabs.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
9 lines
390 B
Go
9 lines
390 B
Go
package db
|
|
|
|
import "github.com/prysmaticlabs/prysm/validator/db/iface"
|
|
|
|
// Database defines the necessary methods for Prysm's validator client backend which may be implemented by any
|
|
// key-value or relational database in practice. This is the full database interface which should
|
|
// not be used often. Prefer a more restrictive interface in this package.
|
|
type Database = iface.ValidatorDB
|