URI: 
       tQuantitative easing of lightning fees - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit df15042cee9fc7ca68ad6d0034567aa8024907c3
   DIR parent d5469b7eb52099ccfd0729422017ac2bbd50b515
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Mon, 16 Mar 2020 14:47:40 +0100
       
       Quantitative easing of lightning fees
       
       Diffstat:
         M electrum/lnrouter.py                |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/electrum/lnrouter.py b/electrum/lnrouter.py
       t@@ -108,8 +108,8 @@ def is_route_sane_to_use(route: LNPaymentRoute, invoice_amount_msat: int, min_fi
        
        
        def is_fee_sane(fee_msat: int, *, payment_amount_msat: int) -> bool:
       -    # fees <= 2 sat are fine
       -    if fee_msat <= 2_000:
       +    # fees <= 5 sat are fine
       +    if fee_msat <= 5_000:
                return True
            # fees <= 1 % of payment are fine
            if 100 * fee_msat <= payment_amount_msat: