mirror of
https://github.com/luxfi/const.git
synced 2026-07-27 18:55:02 +00:00
- Add KeyVMID for K-Chain key management - Update CLI port configurations - Minor cleanups
14 lines
999 B
Go
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")
|
|
)
|