Searched refs:PaymentFailure (Results 1 – 5 of 5) sorted by relevance
/dports/finance/electrum/Electrum-4.1.5/electrum/ |
H A D | lnchannel.py | 809 raise PaymentFailure('Channel not open', self.get_state()) 812 raise PaymentFailure('Channel cannot send ctx updates') 814 raise PaymentFailure('Channel cannot add htlc') 823 raise PaymentFailure("HTLC value must be positive") 825 raise PaymentFailure(f'HTLC value too small: {amount_msat} msat') 835 raise PaymentFailure('Too many HTLCs already in channel') 842 raise PaymentFailure('Too many HTLCs already in channel') 847 … raise PaymentFailure(f'HTLC value sum (sum of pending htlcs: {current_htlc_sum/1000} sat ' 857 except PaymentFailure: 870 except PaymentFailure: [all …]
|
H A D | lnworker.py | 58 PaymentFailure, split_host_port, ConnStringFormatError, 1096 raise PaymentFailure(_("This invoice has been paid already")) 1098 raise PaymentFailure(_("A payment was already initiated for this invoice")) 1100 raise PaymentFailure(_("A previous attempt to pay this invoice did not clear")) 1118 except PaymentFailure as e: 1212 raise PaymentFailure('Giving up after %d attempts'%len(log)) 1223 raise PaymentFailure(failure_msg.code_name()) 1241 raise PaymentFailure(failure_msg.code_name()) 1262 raise PaymentFailure('Dropped peer') 1318 raise PaymentFailure(failure_msg.code_name()) [all …]
|
H A D | lnonion.py | 34 from .lnutil import (get_ecdh, PaymentFailure, NUM_MAX_HOPS_IN_PAYMENT_PATH, 276 raise PaymentFailure(f"too long route ({len(route)} edges)")
|
H A D | lnpeer.py | 39 secret_to_pubkey, PaymentFailure, LnFeatures, 1250 raise PaymentFailure("Channel cannot send update_add_htlc") 1283 … raise PaymentFailure(f"htlc expiry too far into future. (in {cltv-local_height} blocks)") 1508 except PaymentFailure as e:
|
H A D | lnutil.py | 301 class PaymentFailure(UserFacingException): pass class 302 class NoPathFound(PaymentFailure):
|