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
Just as an Info, I want to limit private Channels being opened to my node, though there is no explicit private type parameter therefore you need to check the ChannelFlag variable for the least significant bit. Its kind of hidden, therefore I am reporting this here.
Add this to the rules/ChannelAccept.js when you only want to allow Public Channels and vice versa for private ones.
(ChannelAccept.Event.ChannelFlags & 1) == 1
The text was updated successfully, but these errors were encountered:
Just as an Info, I want to limit private Channels being opened to my node, though there is no explicit private type parameter therefore you need to check the ChannelFlag variable for the least significant bit. Its kind of hidden, therefore I am reporting this here.
Add this to the
rules/ChannelAccept.js
when you only want to allow Public Channels and vice versa for private ones.(ChannelAccept.Event.ChannelFlags & 1) == 1
The text was updated successfully, but these errors were encountered: