mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 20:07:17 +00:00
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
|