You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
case channelManagerInitializationMissingScorerOrNetworkGraph
24
24
}
25
25
26
+
/// Argument used when deserializing ChannelManager instances. If the user has previously already taken it upon themselves to deserialize the NetworkGraph, the `instance`
27
+
/// case may be used. Otherwise, `serialized` may be passed to have the deserializer handle the NetworkGraph, too.
28
+
publicenumNetworkGraphArgument{
29
+
/// Use if you have a serialized NetworkGraph that should be deserialized.
30
+
case serialized([UInt8])
31
+
/// Use if you have already deserialized a NetworkGraph and wish to pass that instance here.
32
+
case instance(NetworkGraph)
33
+
}
34
+
26
35
publicstructChannelManagerConstructionParameters{
27
36
publicvarconfig:UserConfig
28
37
publicvarentropySource:EntropySource
@@ -109,7 +118,7 @@ public class ChannelManagerConstructor: NativeTypeWrapper {
0 commit comments