mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-23 15:14:32 +00:00
19 lines
No EOL
565 B
HCL
19 lines
No EOL
565 B
HCL
variable "devnet_node_kyes" {
|
|
description = "Array of nodes keys."
|
|
type = map(any)
|
|
|
|
/**
|
|
Below is the list of private keys you need to specify. It follows the pattern of
|
|
{{Name of the node}}: {
|
|
pk: {{Value of the node private key}},
|
|
... any other configuration we want to pass.
|
|
}
|
|
Note: No `n` is allowed in the node name
|
|
**/
|
|
default = {
|
|
xdc-1 = {
|
|
pk = "3efdb44088929167487da052125162b48d8d54fe8f7b7db11b5d5cc3b9a1c14b",
|
|
isChaosNode = false # This is a placeholder, config not supported yet
|
|
}
|
|
}
|
|
} |