diff --git a/config/flags.go b/config/flags.go index 6cf557e74..8114bf228 100644 --- a/config/flags.go +++ b/config/flags.go @@ -309,7 +309,7 @@ func addNodeFlags(fs *pflag.FlagSet) { fs.String(HandshakeMLKEMPubKeyPathKey, defaultHandshakeMLKEMPubKeyPath, fmt.Sprintf("Path to the ML-KEM-768 handshake public key (FIPS 203 PEM). Ignored if %s is specified", HandshakeMLKEMPubKeyContentKey)) fs.String(HandshakeMLKEMPubKeyContentKey, "", "Base64-encoded ML-KEM-768 handshake public key (FIPS 203 PEM)") fs.String(StakingKMSEndpointKey, "", "KMS endpoint for staking key retrieval (e.g., https://kms.dev.lux.network)") - fs.String(StakingKMSSecretPathKey, "", "KMS secret path for staking keys (e.g., /staking/liquid-devnet/node-0)") + fs.String(StakingKMSSecretPathKey, "", "KMS secret path for staking keys (e.g., /staking/devnet/node-0)") fs.String(StakingKMSTokenKey, "", "KMS auth token for staking key retrieval") fs.Bool(SybilProtectionEnabledKey, true, "Enables sybil protection. If enabled, Network TLS is required") fs.Uint64(SybilProtectionDisabledWeightKey, 100, "Weight to provide to each peer when sybil protection is disabled") diff --git a/staking/kms.go b/staking/kms.go index c8e2953ac..6eb9efea1 100644 --- a/staking/kms.go +++ b/staking/kms.go @@ -27,7 +27,7 @@ import ( // KMSConfig for staking key retrieval type KMSConfig struct { Endpoint string // KMS API endpoint (e.g., https://kms.dev.lux.network) - SecretPath string // Path to the staking secret (e.g., /staking/liquid-devnet/node-0) + SecretPath string // Path to the staking secret (e.g., /staking/devnet/node-0) AuthToken string // Bearer token for KMS auth } diff --git a/tools/go.sum b/tools/go.sum index 6a717e9f6..e06db05b1 100644 --- a/tools/go.sum +++ b/tools/go.sum @@ -37,7 +37,7 @@ github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UF github.com/charithe/durationcheck v0.0.10 h1:wgw73BiocdBDQPik+zcEoBG/ob8uyBHf2iyoHGPf5w4= github.com/charmbracelet/colorprofile v0.3.1 h1:k8dTHMd7fgw4bnFd7jXTLZrSU/CQrKnL3m+AxCzDz40= github.com/charmbracelet/lipgloss v1.1.0 h1:vYXsiLHVkK7fp74RkV7b2kq9+zDLoEU4MZoFqR/noCY= -github.com/charmbracelet/x/ansi v0.9.2 h1:92AGsQmNTRMzuzHEYfCdjQeUzTrgE1vfO5/7fEVoXdY= +github.com/charmbracelet/x/ansi v0.9.2 h1:VxqhWbZIXFl3/ufdpzcwlaPZRPoaOj8r+KtyeRG3C0g= github.com/charmbracelet/x/cellbuf v0.0.13 h1:/KBBKHuVRbq1lYx5BzEHBAFBP8VcQzJejZ/IA3iR28k= github.com/charmbracelet/x/term v0.2.1 h1:AQeHeLZ1OqSXhrAWpYUtZyX1T3zVxfpZuEQMIQaGIAQ= github.com/chavacava/garif v0.1.0 h1:2JHa3hbYf5D9dsgseMKAmc/MZ109otzgNFk5s87H9Pc=