mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
62c25eaedb
* Revert "Fix `ListValidatorBalances` for v0.11 (#5458)" This reverts commit3763a8ce5d
. * Revert "Deprecate archival service (#5445)" This reverts commit4fbcedf541
. * Revert "Delete archival DB methods (#5459)" This reverts commit8a3ea1e936
. * Revert "Modify `ListBeaconCommittees ` to use new state service (#5411)" This reverts commit497fa6ed50
. * Revert "Modify `GetValidatorParticipation` to use new state service (#5409)" This reverts commit046a00aa87
. * Revert "Modify `GetValidatorActiveSetChanges` to use new state service (#5408)" This reverts commit5eb6485e14
. * Revert "Modify `ListValidatorAssignments` to use new state service (#5365)" This reverts commit5a1a768135
.
33 lines
1.2 KiB
Go
33 lines
1.2 KiB
Go
package flags
|
|
|
|
import (
|
|
"gopkg.in/urfave/cli.v2"
|
|
)
|
|
|
|
var (
|
|
// ArchiveEnableFlag defines whether or not the beacon chain should archive
|
|
// historical blocks, attestations, and validator set changes.
|
|
ArchiveEnableFlag = &cli.BoolFlag{
|
|
Name: "archive",
|
|
Usage: "Whether or not beacon chain should archive historical data including blocks, attestations, and validator set changes",
|
|
}
|
|
// ArchiveValidatorSetChangesFlag defines whether or not the beacon chain should archive
|
|
// historical validator set changes in persistent storage.
|
|
ArchiveValidatorSetChangesFlag = &cli.BoolFlag{
|
|
Name: "archive-validator-set-changes",
|
|
Usage: "Whether or not beacon chain should archive historical validator set changes",
|
|
}
|
|
// ArchiveBlocksFlag defines whether or not the beacon chain should archive
|
|
// historical block data in persistent storage.
|
|
ArchiveBlocksFlag = &cli.BoolFlag{
|
|
Name: "archive-blocks",
|
|
Usage: "Whether or not beacon chain should archive historical blocks",
|
|
}
|
|
// ArchiveAttestationsFlag defines whether or not the beacon chain should archive
|
|
// historical attestation data in persistent storage.
|
|
ArchiveAttestationsFlag = &cli.BoolFlag{
|
|
Name: "archive-attestations",
|
|
Usage: "Whether or not beacon chain should archive historical blocks",
|
|
}
|
|
)
|