Browse Source

fix previous commit

regtest_lnd
ThomasV 6 years ago
committed by SomberNight
parent
commit
315ff4bfb7
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 12
      electrum/lnbase.py

12
electrum/lnbase.py

@ -1043,12 +1043,12 @@ class Peer(PrintError):
self.print_error("UPDATE_FAIL_HTLC", repr(code), data)
# handle some specific error codes
failure_codes = {
OnionFailureCode.TEMPORARY_CHANNEL_FAILURE: 2
OnionFailureCode.AMOUNT_BELOW_MINIMUM: 10
OnionFailureCode.FEE_INSUFFICIENT: 10
OnionFailureCode.INCORRECT_CLTV_EXPIRY: 6
OnionFailureCode.EXPIRY_TOO_SOON: 2
OnionFailureCode.CHANNEL_DISABLED: 4
OnionFailureCode.TEMPORARY_CHANNEL_FAILURE: 2,
OnionFailureCode.AMOUNT_BELOW_MINIMUM: 10,
OnionFailureCode.FEE_INSUFFICIENT: 10,
OnionFailureCode.INCORRECT_CLTV_EXPIRY: 6,
OnionFailureCode.EXPIRY_TOO_SOON: 2,
OnionFailureCode.CHANNEL_DISABLED: 4,
}
offset = failure_codes.get(code)
if offset:

Loading…
Cancel
Save