Files
const/cli_errors.go
Zach Kelling ee42518045 feat: add KeyVMID and update CLI ports
- Add KeyVMID for K-Chain key management
- Update CLI port configurations
- Minor cleanups
2026-01-26 09:27:50 -08:00

14 lines
999 B
Go

// Copyright (C) 2022-2025, Lux Industries, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package constants
import "errors"
var (
ErrNoBlockchainID = errors.New("\n\nNo blockchainID found. To resolve this:\n- Use 'lux blockchain deploy' to deploy the blockchain and generate a blockchainID.\n- Or use 'lux blockchain import' to import an existing configuration.\n") //nolint:staticcheck // ST1005: intentional formatting for user-friendly error messages
ErrNoChainID = errors.New("\n\nNo chainID found. To resolve this:\n- Use 'lux blockchain deploy' to create the chain and generate a chainID.\n- Or use 'lux blockchain import' to import an existing configuration.\n") //nolint:staticcheck // ST1005: intentional formatting for user-friendly error messages
ErrInvalidValidatorManagerAddress = errors.New("invalid validator manager address")
ErrKeyNotFoundOnMap = errors.New("key not found on map")
)