From 957f014d5dd101b03618a55da3cd792d61c058e9 Mon Sep 17 00:00:00 2001 From: pm47 Date: Thu, 9 Jun 2022 16:40:36 +0200 Subject: [PATCH] fix error: knownDirectSubclasses of RealShortChannelId observed before subclass registered --- .../src/main/scala/fr/acinq/eclair/ShortChannelId.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eclair-core/src/main/scala/fr/acinq/eclair/ShortChannelId.scala b/eclair-core/src/main/scala/fr/acinq/eclair/ShortChannelId.scala index 7d8a0846d9..97bcc016f3 100644 --- a/eclair-core/src/main/scala/fr/acinq/eclair/ShortChannelId.scala +++ b/eclair-core/src/main/scala/fr/acinq/eclair/ShortChannelId.scala @@ -16,8 +16,8 @@ package fr.acinq.eclair -sealed trait RealShortChannelId extends ShortChannelId -sealed trait LocalAlias extends ShortChannelId +trait RealShortChannelId extends ShortChannelId +trait LocalAlias extends ShortChannelId /** * A short channel id uniquely identifies a channel by the coordinates of its funding tx output in the blockchain.