mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 20:07:17 +00:00
2a997828a3
* Refactor validators db * Lint * Lint Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
9 lines
378 B
Go
9 lines
378 B
Go
package db
|
|
|
|
import "github.com/prysmaticlabs/prysm/validator/db/iface"
|
|
|
|
// Database defines the necessary methods for Prysm's eth2 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
|