Directly abort execution in FeeBumper::commit if wallet or tx is not available
This commit is contained in:
parent
2718db0705
commit
bcc72cccc7
1 changed files with 1 additions and 0 deletions
|
@ -236,6 +236,7 @@ bool CFeeBumper::commit(CWallet *pWallet)
|
|||
if (txid.IsNull() || !pWallet->mapWallet.count(txid)) {
|
||||
vErrors.push_back("Invalid or non-wallet transaction id");
|
||||
currentResult = BumpFeeResult::MISC_ERROR;
|
||||
return false;
|
||||
}
|
||||
CWalletTx& oldWtx = pWallet->mapWallet[txid];
|
||||
|
||||
|
|
Loading…
Reference in a new issue