2019-10-01 12:22:30 -03:00

12 lines
305 B
Go

package neutrino
import "errors"
var (
// ErrGetUtxoCancelled signals that a GetUtxo request was cancelled.
ErrGetUtxoCancelled = errors.New("get utxo request cancelled")
// ErrShuttingDown signals that neutrino received a shutdown request.
ErrShuttingDown = errors.New("neutrino shutting down")
)