package onionmessage import "errors" var ( // ErrActorShuttingDown is returned by the actor logic when its context // is cancelled. ErrActorShuttingDown = errors.New("actor shutting down") // ErrNextNodeIdEmpty is returned when the next node ID is missing from // the route data. ErrNextNodeIdEmpty = errors.New("next node ID empty") // ErrSCIDEmpty is returned when the short channel ID is missing from // the route data. ErrSCIDEmpty = errors.New("short channel ID empty") )