mirror of
https://github.com/btcsuite/btcd.git
synced 2025-02-23 22:47:01 +01:00
13 lines
391 B
Go
13 lines
391 B
Go
package rpcclient
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrBitcoindVersion is returned when running against a bitcoind that
|
|
// is older than the minimum version supported by the rpcclient.
|
|
ErrBitcoindVersion = errors.New("bitcoind version too low")
|
|
|
|
// ErrInvalidParam is returned when the caller provides an invalid
|
|
// parameter to an RPC method.
|
|
ErrInvalidParam = errors.New("invalid param")
|
|
)
|