From e0467adbfc13fd9f709b293461aeb165179d6e9e Mon Sep 17 00:00:00 2001 From: bitromortac Date: Thu, 2 Apr 2026 10:49:07 +0200 Subject: [PATCH] chanevents: add event types This was forgotten previously. --- chanevents/chanevents.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/chanevents/chanevents.go b/chanevents/chanevents.go index 70ca21f..41289bf 100644 --- a/chanevents/chanevents.go +++ b/chanevents/chanevents.go @@ -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.