We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c942d2 commit b1ed869Copy full SHA for b1ed869
libs/gl-client/src/signer/mod.rs
@@ -138,9 +138,12 @@ impl Signer {
138
// per payment, rather than the fee budget per HTLC.
139
// Ref: https://github.com/Blockstream/greenlight/issues/538
140
{
141
- policy.max_feerate_per_kw = 75_000;
+ policy.max_feerate_per_kw = 150_000;
142
policy.filter.merge(PolicyFilter {
143
- rules: vec![FilterRule::new_warn("policy-commitment-fee-range")],
+ rules: vec![
144
+ FilterRule::new_warn("policy-commitment-fee-range"),
145
+ FilterRule::new_warn("policy-mutual-fee-range"),
146
+ ],
147
});
148
}
149
0 commit comments