calc_hops_data: total_msat should be optional
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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)}")
|
||||
|
||||
Reference in New Issue
Block a user