1
0

calc_hops_data: total_msat should be optional

This commit is contained in:
ThomasV
2021-02-24 16:14:19 +01:00
parent 0a5b714643
commit 152894e6a9
2 changed files with 3 additions and 3 deletions

View File

@@ -261,8 +261,8 @@ def new_onion_packet(payment_path_pubkeys: Sequence[bytes], session_key: bytes,
hmac=next_hmac)
def calc_hops_data_for_payment(route: 'LNPaymentRoute', amount_msat: int, total_msat: int,
final_cltv: int, *, payment_secret: bytes = None) \
def calc_hops_data_for_payment(route: 'LNPaymentRoute', amount_msat: int, final_cltv: int, *,
total_msat=None, payment_secret: bytes = None) \
-> Tuple[List[OnionHopsDataSingle], int, int]:
"""Returns the hops_data to be used for constructing an onion packet,
and the amount_msat and cltv to be used on our immediate channel.

View File

@@ -1209,8 +1209,8 @@ class Peer(Logger):
hops_data, amount_msat, cltv = calc_hops_data_for_payment(
route,
amount_msat,
total_msat,
final_cltv,
total_msat=total_msat,
payment_secret=payment_secret
)
self.logger.info(f"lnpeer.pay len(route)={len(route)}")