mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-02-21 14:24:09 +01:00
wallet: fix typo in debug message.
"coinbase" test is backwards! Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
d94b715bcf
commit
9e41754e7d
1 changed files with 1 additions and 1 deletions
|
@ -2358,7 +2358,7 @@ int wallet_extract_owned_outputs(struct wallet *w, const struct wally_tx *wtx,
|
|||
type_to_string(tmpctx, struct bitcoin_txid,
|
||||
&utxo->outpoint.txid),
|
||||
blockheight ? " CONFIRMED" : "",
|
||||
is_coinbase == 0 ? " COINBASE" : "");
|
||||
is_coinbase ? " COINBASE" : "");
|
||||
|
||||
/* We only record final ledger movements */
|
||||
if (blockheight) {
|
||||
|
|
Loading…
Add table
Reference in a new issue