Use the same keystore directory names as Lighthouse
Rationale: this makes moving keys between the clients eaiser Other changes: * Restore building with custom presets (defaultRuntimePreset is not a template in this mode)
This commit is contained in:
parent
f4c16ed0db
commit
9861eb1152
|
@ -171,7 +171,7 @@ proc main() {.async.} =
|
|||
if cfg.cmd == StartUpCommand.generateSimulationDeposits:
|
||||
let
|
||||
walletData = WalletDataForDeposits(mnemonic: generateMnemonic(rng[]))
|
||||
runtimePreset = defaultRuntimePreset()
|
||||
runtimePreset = defaultRuntimePreset
|
||||
|
||||
createDir(string cfg.outValidatorsDir)
|
||||
createDir(string cfg.outSecretsDir)
|
||||
|
|
|
@ -105,7 +105,7 @@ proc saveKeystore(rng: var BrHmacDrbgContext,
|
|||
signingKey: ValidatorPrivKey, signingPubKey: ValidatorPubKey,
|
||||
signingKeyPath: KeyPath): Result[void, KeystoreGenerationError] =
|
||||
let
|
||||
keyName = $signingPubKey
|
||||
keyName = "0x" & $signingPubKey
|
||||
validatorDir = validatorsDir / keyName
|
||||
|
||||
if not existsDir(validatorDir):
|
||||
|
|
Loading…
Reference in New Issue