Skip to content

Commit 23a64aa

Browse files
committed
Set defaults for ChannelConfig in bindings
1 parent 971c224 commit 23a64aa

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
@@ -200,12 +200,12 @@ dictionary PeerDetails {
200200
};
201201

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

211211
enum LogLevel {

0 commit comments

Comments
 (0)