Skip to content

Commit

Permalink
Set defaults for ChannelConfig in bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
tnull committed Jul 6, 2023
1 parent cc0b4be commit 6ebe783
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions bindings/ldk_node.udl
Original file line number Diff line number Diff line change
Expand Up @@ -200,12 +200,12 @@ dictionary PeerDetails {
};

dictionary ChannelConfig {
u32 forwarding_fee_proportional_millionths;
u32 forwarding_fee_base_msat;
u16 cltv_expiry_delta;
u64 max_dust_htlc_exposure_msat;
u64 force_close_avoidance_max_fee_satoshis;
boolean accept_underpaying_htlcs;
u32 forwarding_fee_proportional_millionths = 0;
u32 forwarding_fee_base_msat = 1000;
u16 cltv_expiry_delta = 72;
u64 max_dust_htlc_exposure_msat = 5000000;
u64 force_close_avoidance_max_fee_satoshis = 1000;
boolean accept_underpaying_htlcs = false;
};

enum LogLevel {
Expand Down

0 comments on commit 6ebe783

Please sign in to comment.