Skip to content

Commit 9b555a8

Browse files
committed
f Account for not taking all by ref
1 parent f3bbf69 commit 9b555a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bindings/ldk_node.udl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ interface Node {
3333
[Throws=NodeError]
3434
u64 total_onchain_balance_sats();
3535
[Throws=NodeError]
36-
void connect([ByRef]PublicKey node_id, [ByRef]SocketAddr address, boolean permanently);
36+
void connect(PublicKey node_id, SocketAddr address, boolean permanently);
3737
[Throws=NodeError]
3838
void disconnect([ByRef]PublicKey node_id);
3939
[Throws=NodeError]
40-
void connect_open_channel([ByRef]PublicKey node_id, [ByRef]SocketAddr address, u64 channel_amount_sats, boolean announce_channel);
40+
void connect_open_channel(PublicKey node_id, SocketAddr address, u64 channel_amount_sats, boolean announce_channel);
4141
[Throws=NodeError]
4242
void close_channel([ByRef]ChannelId channel_id, [ByRef]PublicKey counterparty_node_id);
4343
[Throws=NodeError]

0 commit comments

Comments
 (0)