From 193b4425ab2c609533ca1ddfd5b59c49f822836a Mon Sep 17 00:00:00 2001 From: niftynei Date: Mon, 25 Nov 2024 15:40:05 +1030 Subject: [PATCH] nit: spelling fix --- lightningd/anchorspend.c | 2 +- lightningd/onchain_control.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lightningd/anchorspend.c b/lightningd/anchorspend.c index b54f4b59c..9532b896a 100644 --- a/lightningd/anchorspend.c +++ b/lightningd/anchorspend.c @@ -270,7 +270,7 @@ static struct bitcoin_tx *spend_anchor(const tal_t *ctx, struct amount_msat total_value; const u8 *msg; - /* Estimate weight of spend tx plus commitment_tx (not including any UTXO we add) */ + /* Estimate weight of anchorspend tx plus commitment_tx (not including any UTXO we add) */ base_weight = bitcoin_tx_core_weight(2, 1) + bitcoin_tx_input_weight(false, bitcoin_tx_input_sig_weight() diff --git a/lightningd/onchain_control.c b/lightningd/onchain_control.c index 1142e6eb8..f89174429 100644 --- a/lightningd/onchain_control.c +++ b/lightningd/onchain_control.c @@ -342,7 +342,7 @@ static void handle_onchain_log_coin_move(struct channel *channel, const u8 *msg) return; } - /* Any 'ignored' payments get registed to the wallet */ + /* Any 'ignored' payments get registered to the wallet */ if (!mvt->account_name) mvt->account_name = fmt_channel_id(mvt, &channel->cid);