MCPcopy Create free account
hub / github.com/ElementsProject/lightning / calc_lease_fee

Function calc_lease_fee

tests/utils.py:105–109  ·  view source on GitHub ↗
(amt, feerate, rates)

Source from the content-addressed store, hash-verified

103
104
105def calc_lease_fee(amt, feerate, rates):
106 fee = rates['lease_fee_base_msat']
107 fee += amt * rates['lease_fee_basis'] // 10
108 fee += rates['funding_weight'] * feerate
109 return fee
110
111
112def check_balance_snaps(n, expected_bals):

Calls

no outgoing calls

Tested by 3

test_v2_rbf_liquidity_adFunction · 0.72