From fa562fdd5e36566f8013eee17c6dbf830942094e Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Mon, 27 Dec 2021 19:34:54 +0100 Subject: [PATCH] doc: Remove fixed TODO from wallet/feebumper Fixed in commit 9522b53a91f28032c34b94662d50b000534708ce --- src/wallet/feebumper.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/wallet/feebumper.cpp b/src/wallet/feebumper.cpp index f2de68295e3..57edba4c7d0 100644 --- a/src/wallet/feebumper.cpp +++ b/src/wallet/feebumper.cpp @@ -276,10 +276,6 @@ Result CommitTransaction(CWallet& wallet, const uint256& txid, CMutableTransacti // mark the original tx as bumped bumped_txid = tx->GetHash(); if (!wallet.MarkReplaced(oldWtx.GetHash(), bumped_txid)) { - // TODO: see if JSON-RPC has a standard way of returning a response - // along with an exception. It would be good to return information about - // wtxBumped to the caller even if marking the original transaction - // replaced does not succeed for some reason. errors.push_back(Untranslated("Created new bumpfee transaction but could not mark the original transaction as replaced")); } return Result::OK;