fix underlying issue

This commit is contained in:
Dustin Brody 2022-04-12 20:17:32 +00:00
parent 287a9c5f51
commit 6ab5cb1729
No known key found for this signature in database
GPG Key ID: 3D7A11A0156519DC
1 changed files with 12 additions and 12 deletions

View File

@ -195,6 +195,18 @@ type
desc: "Number of worker threads (\"0\" = use as many threads as there are CPU cores available)"
name: "num-threads" }: int
useJwt* {.
hidden
desc: "Enable JWT authentication headers; temporary option feature gate (debugging; option may be remove without warning)",
defaultValue: false
name: "use-jwt-debug" }: bool
# https://github.com/ethereum/execution-apis/blob/v1.0.0-alpha.8/src/engine/authentication.md#key-distribution
jwtSecret* {.
hidden
desc: "A file containing the hex-encoded 256 bit secret key to be used for verifying/generating jwt tokens"
name: "jwt-secret" .}: Option[string]
case cmd* {.
command
defaultValue: BNStartUpCmd.noCommand }: BNStartUpCmd
@ -499,12 +511,6 @@ type
defaultValue: false
name: "proposer-boosting-debug" }: bool
useJwt* {.
hidden
desc: "Enable JWT authentication headers; temporary option feature gate (debugging; option may be remove without warning)",
defaultValue: false
name: "use-jwt-debug" }: bool
# https://github.com/ethereum/consensus-specs/blob/v1.1.10/sync/optimistic.md#fork-choice-poisoning
safeSlotsToImportOptimistically* {.
hidden
@ -513,12 +519,6 @@ type
defaultValue: 128
name: "safe-slots-to-import-optimistically" }: uint64
# https://github.com/ethereum/execution-apis/blob/v1.0.0-alpha.8/src/engine/authentication.md#key-distribution
jwtSecret* {.
hidden
desc: "A file containing the hex-encoded 256 bit secret key to be used for verifying/generating jwt tokens"
name: "jwt-secret" .}: Option[string]
of BNStartUpCmd.createTestnet:
testnetDepositsFile* {.
desc: "A LaunchPad deposits file for the genesis state validators"