2020-01-08 18:16:17 +00:00
|
|
|
// Package iface exists to prevent circular dependencies when implementing the database interface.
|
|
|
|
package iface
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"io"
|
|
|
|
|
|
|
|
slashpb "github.com/prysmaticlabs/prysm/proto/slashing"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ValidatorDB defines the necessary methods for a Prysm validator DB.
|
|
|
|
type ValidatorDB interface {
|
|
|
|
io.Closer
|
|
|
|
DatabasePath() string
|
|
|
|
ClearDB() error
|
|
|
|
// Proposer protection related methods.
|
|
|
|
ProposalHistory(ctx context.Context, publicKey []byte) (*slashpb.ProposalHistory, error)
|
|
|
|
SaveProposalHistory(ctx context.Context, publicKey []byte, history *slashpb.ProposalHistory) error
|
|
|
|
DeleteProposalHistory(ctx context.Context, publicKey []byte) error
|
2020-01-19 22:05:48 +00:00
|
|
|
// Attester protection related methods.
|
|
|
|
AttestationHistory(ctx context.Context, publicKey []byte) (*slashpb.AttestationHistory, error)
|
|
|
|
SaveAttestationHistory(ctx context.Context, publicKey []byte, history *slashpb.AttestationHistory) error
|
|
|
|
DeleteAttestationHistory(ctx context.Context, publicKey []byte) error
|
2020-01-08 18:16:17 +00:00
|
|
|
}
|