Compare commits

...

2 Commits

Author SHA1 Message Date
Preston Van Loon
9fd5575f65 Update web-ui to beta.4 (#9047)
* add site data

* gofmt

* fix embed

* fmt

Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
(cherry picked from commit 9dc4c49fbd)
2021-06-16 08:44:02 -05:00
Preston Van Loon
f5428a2c60 Revert "Invert attest-timely flag" (#9044)
This reverts commit 5fe98ab260.

(cherry picked from commit 6971245e05)
2021-06-15 18:11:06 -05:00
5 changed files with 21 additions and 28 deletions

View File

@@ -340,9 +340,9 @@ filegroup(
visibility = ["//visibility:public"],
)
""",
sha256 = "edb80f3a695d84f6000f0e05abf7a4bbf207c03abb91219780ec97e7d6ad21c8",
sha256 = "54ce527b83d092da01127f2e3816f4d5cfbab69354caba8537f1ea55889b6d7c",
urls = [
"https://github.com/prysmaticlabs/prysm-web-ui/releases/download/v1.0.0-beta.3/prysm-web-ui.tar.gz",
"https://github.com/prysmaticlabs/prysm-web-ui/releases/download/v1.0.0-beta.4/prysm-web-ui.tar.gz",
],
)

View File

@@ -231,10 +231,9 @@ func ConfigureValidator(ctx *cli.Context) {
log.WithField(disableAttestingHistoryDBCache.Name, disableAttestingHistoryDBCache.Usage).Warn(enabledFeatureFlag)
cfg.DisableAttestingHistoryDBCache = true
}
cfg.AttestTimely = true
if ctx.Bool(disableAttestTimely.Name) {
log.WithField(disableAttestTimely.Name, disableAttestTimely.Usage).Warn(enabledFeatureFlag)
cfg.AttestTimely = false
if ctx.Bool(attestTimely.Name) {
log.WithField(attestTimely.Name, attestTimely.Usage).Warn(enabledFeatureFlag)
cfg.AttestTimely = true
}
if ctx.Bool(enableSlashingProtectionPruning.Name) {
log.WithField(enableSlashingProtectionPruning.Name, enableSlashingProtectionPruning.Usage).Warn(enabledFeatureFlag)

View File

@@ -37,11 +37,6 @@ var (
Usage: deprecatedUsage,
Hidden: true,
}
deprecatedAttestingTimely = &cli.BoolFlag{
Name: "attest-timely",
Usage: deprecatedUsage,
Hidden: true,
}
deprecatedProposerAttsSelectionUsingMaxCover = &cli.BoolFlag{
Name: "proposer-atts-selection-using-max-cover",
Usage: deprecatedUsage,
@@ -56,6 +51,5 @@ var deprecatedFlags = []cli.Flag{
deprecatedDisablePruningDepositProofs,
deprecatedDisableEth1DataMajorityVote,
deprecatedDisableBlst,
deprecatedAttestingTimely,
deprecatedProposerAttsSelectionUsingMaxCover,
}

View File

@@ -98,9 +98,9 @@ var (
Name: "disable-broadcast-slashings",
Usage: "Disables broadcasting slashings submitted to the beacon node.",
}
disableAttestTimely = &cli.BoolFlag{
Name: "disable-attest-timely",
Usage: "Disable attest timely, a fix where validator can attest timely after current block processes. See #8185 for more details",
attestTimely = &cli.BoolFlag{
Name: "attest-timely",
Usage: "Fixes validator can attest timely after current block processes. See #8185 for more details",
}
enableNextSlotStateCache = &cli.BoolFlag{
Name: "enable-next-slot-state-cache",
@@ -144,7 +144,7 @@ var ValidatorFlags = append(deprecatedFlags, []cli.Flag{
Mainnet,
disableAccountsV2,
dynamicKeyReloadDebounceInterval,
disableAttestTimely,
attestTimely,
enableSlashingProtectionPruning,
}...)

File diff suppressed because one or more lines are too long