Transaction-Fees
什麼費用是結束費用談判的起點?
當我發出命令時,
lightning-cli listpeers $peerid
我得到了一個 atm 的費率 perkb1012
。這到底是什麼費率?這是其他對等方將提出的相互關閉的費率嗎?我認為情況並非如此。feerate: An object containing the latest feerate as both perkw and perkb.
我知道我可以使用
lcli feerates perkb
. 有了這些結果 atm:{ "perkb": { "opening": 1012, "mutual_close": 1012, "unilateral_close": 1012, "delayed_to_us": 1012, "htlc_resolution": 1012, "penalty": 1012, "min_acceptable": 1012, "max_acceptable": 88300 }, "onchain_fee_estimates": { "opening_channel_satoshis": 177, "mutual_close_satoshis": 170, "unilateral_close_satoshis": 151, "htlc_timeout_satoshis": 168, "htlc_success_satoshis": 178 } }
這意味著我的節點將提議
1012
作為相互關閉的起始費用。但是另一個節點的啟動費用是多少?
你不會知道其他節點提出什麼建議,除非有人開始關閉通道的過程,然後你的節點將看到他們提出的建議並開始深入研究估計。
通常,您可以使用
lightning-cli help feerates
(或在您的情況下使用lcli help feerates
)訪問手冊頁,我們可以從那裡找到有關費用談判的更多資訊。它說結束談判從您的節點
mutual_close
按照您的建議提出 fess 開始。我引用:mutual_close - the starting feerate used in mutual close negotiation. Note that since mutual close is a negotiation, the actual feerate used in mutual close will be somewhere between this and the corresponding mutual close feerate of the peer.