mirror of
https://github.com/muun/recovery.git
synced 2025-02-23 03:22:31 -05:00
12 lines
305 B
Go
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")
|
|
)
|