mirror of
https://github.com/lightninglabs/faraday.git
synced 2026-08-13 12:33:35 +02:00
chanevents: add event types
This was forgotten previously.
This commit is contained in:
parent
0af64175a9
commit
e0467adbfc
1 changed files with 4 additions and 4 deletions
|
|
@ -14,16 +14,16 @@ type EventType int16
|
|||
|
||||
const (
|
||||
// EventTypeUnknown is the unknown event type.
|
||||
EventTypeUnknown = 0
|
||||
EventTypeUnknown EventType = 0
|
||||
|
||||
// EventTypeOnline is the online event type.
|
||||
EventTypeOnline = 1
|
||||
EventTypeOnline EventType = 1
|
||||
|
||||
// EventTypeOffline is the offline event type.
|
||||
EventTypeOffline = 2
|
||||
EventTypeOffline EventType = 2
|
||||
|
||||
// EventTypeUpdate is the balance update event type.
|
||||
EventTypeUpdate = 3
|
||||
EventTypeUpdate EventType = 3
|
||||
)
|
||||
|
||||
// String returns the string representation of the event type.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue