chore: drop brand token from staking KMS path examples; refresh tools go.sum checksum

config/flags.go + staking/kms.go: the StakingKMSSecretPath example string
referenced a brand-specific devnet path; replaced with the generic
/staking/devnet/node-0 form (lux surfaces carry no white-label brand
tokens). tools/go.sum: corrected the stale charmbracelet/x/ansi v0.9.2 h1
checksum to the canonical value (verified via go mod download).
This commit is contained in:
zeekay
2026-06-23 01:44:04 -07:00
parent cb220f61d4
commit 44b67b99a0
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -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
}