Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var ( ErrNeedPositiveAmount = InvalidParameterError{ errors.New("amount must be positive"), } ErrNeedBelowMaxAmount = InvalidParameterError{ errors.New("amount must be below max amount"), } ErrNeedPositiveSpendLimit = InvalidParameterError{ errors.New("spend limit must be positive"), } ErrNeedPositiveMinconf = InvalidParameterError{ errors.New("minconf must be positive"), } ErrAddressNotInWallet = dcrjson.RPCError{ Code: dcrjson.ErrRPCWallet, Message: "address not found in wallet", } ErrAccountNameNotFound = dcrjson.RPCError{ Code: dcrjson.ErrRPCWalletInvalidAccountName, Message: "account name not found", } ErrUnloadedWallet = dcrjson.RPCError{ Code: dcrjson.ErrRPCWallet, Message: "Request requires a wallet but wallet has not loaded yet", } ErrClientNotConnected = dcrjson.RPCError{ Code: dcrjson.ErrRPCClientNotConnected, Message: "RPC client has not connected yet", } ErrWalletUnlockNeeded = dcrjson.RPCError{ Code: dcrjson.ErrRPCWalletUnlockNeeded, Message: "Enter the wallet passphrase with walletpassphrase first", } ErrNotImportedAccount = dcrjson.RPCError{ Code: dcrjson.ErrRPCWallet, Message: "imported addresses must belong to the imported account", } ErrNoTransactionInfo = dcrjson.RPCError{ Code: dcrjson.ErrRPCNoTxInfo, Message: "No information for transaction", } ErrReservedAccountName = dcrjson.RPCError{ Code: dcrjson.ErrRPCInvalidParameter, Message: "Account name is reserved by RPC server", } ErrMainNetSafety = dcrjson.RPCError{ Code: dcrjson.ErrRPCWallet, Message: "RPC function disabled on MainNet wallets for security purposes", } )
Errors variables that are defined once here to avoid duplication below.
var ErrNoAuth = errors.New("no auth")
ErrNoAuth represents an error where authentication could not succeed due to a missing Authorization HTTP header.
Functions ¶
Types ¶
type DeserializationError ¶
type DeserializationError struct {
// contains filtered or unexported fields
}
DeserializationError describes a failed deserializaion due to bad user input. It corresponds to dcrjson.ErrRPCDeserialization.
type InvalidParameterError ¶
type InvalidParameterError struct {
// contains filtered or unexported fields
}
InvalidParameterError describes an invalid parameter passed by the user. It corresponds to dcrjson.ErrRPCInvalidParameter.
type Options ¶
type Options struct { Username string Password string MaxPOSTClients int64 MaxWebsocketClients int64 }
Options contains the required options for running the legacy RPC server.
type ParseError ¶
type ParseError struct {
// contains filtered or unexported fields
}
ParseError describes a failed parse due to bad user input. It corresponds to dcrjson.ErrRPCParse.
type Server ¶
type Server struct {
// contains filtered or unexported fields
}
Server holds the items the RPC server may need to access (auth, config, shutdown, etc.)
func NewServer ¶
func NewServer(opts *Options, activeNet *chaincfg.Params, walletLoader *loader.Loader, ticketBuyerConfig *ticketbuyer.Config, listeners []net.Listener) *Server
NewServer creates a new server for serving legacy RPC client connections, both HTTP POST and websocket.
func (*Server) RequestProcessShutdown ¶
func (s *Server) RequestProcessShutdown() <-chan struct{}
RequestProcessShutdown returns a channel that is sent to when an authorized client requests remote shutdown.
func (*Server) SetChainServer ¶
SetChainServer sets the chain server client component needed to run a fully functional decred wallet RPC server. This can be called to enable RPC passthrough even before a loaded wallet is set, but the wallet's RPC client is preferred.