fix underlying issue
This commit is contained in:
parent
287a9c5f51
commit
6ab5cb1729
|
@ -195,6 +195,18 @@ type
|
||||||
desc: "Number of worker threads (\"0\" = use as many threads as there are CPU cores available)"
|
desc: "Number of worker threads (\"0\" = use as many threads as there are CPU cores available)"
|
||||||
name: "num-threads" }: int
|
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* {.
|
case cmd* {.
|
||||||
command
|
command
|
||||||
defaultValue: BNStartUpCmd.noCommand }: BNStartUpCmd
|
defaultValue: BNStartUpCmd.noCommand }: BNStartUpCmd
|
||||||
|
@ -499,12 +511,6 @@ type
|
||||||
defaultValue: false
|
defaultValue: false
|
||||||
name: "proposer-boosting-debug" }: bool
|
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
|
# https://github.com/ethereum/consensus-specs/blob/v1.1.10/sync/optimistic.md#fork-choice-poisoning
|
||||||
safeSlotsToImportOptimistically* {.
|
safeSlotsToImportOptimistically* {.
|
||||||
hidden
|
hidden
|
||||||
|
@ -513,12 +519,6 @@ type
|
||||||
defaultValue: 128
|
defaultValue: 128
|
||||||
name: "safe-slots-to-import-optimistically" }: uint64
|
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:
|
of BNStartUpCmd.createTestnet:
|
||||||
testnetDepositsFile* {.
|
testnetDepositsFile* {.
|
||||||
desc: "A LaunchPad deposits file for the genesis state validators"
|
desc: "A LaunchPad deposits file for the genesis state validators"
|
||||||
|
|
Loading…
Reference in New Issue