Skip to content

Commit 08672c2

Browse files
committed
Set defaults for ChannelConfig in bindings
1 parent 9aef500 commit 08672c2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

bindings/ldk_node.udl

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -199,12 +199,12 @@ dictionary PeerDetails {
199199
};
200200

201201
dictionary ChannelConfig {
202-
u32 forwarding_fee_proportional_millionths;
203-
u32 forwarding_fee_base_msat;
204-
u16 cltv_expiry_delta;
205-
u64 max_dust_htlc_exposure_msat;
206-
u64 force_close_avoidance_max_fee_satoshis;
207-
boolean accept_underpaying_htlcs;
202+
u32 forwarding_fee_proportional_millionths = 0;
203+
u32 forwarding_fee_base_msat = 1000;
204+
u16 cltv_expiry_delta = 72;
205+
u64 max_dust_htlc_exposure_msat = 5000000;
206+
u64 force_close_avoidance_max_fee_satoshis = 1000;
207+
boolean accept_underpaying_htlcs = false;
208208
};
209209

210210
enum LogLevel {

0 commit comments

Comments
 (0)