mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
qt: Replace stray tfm::format to cerr with qWarning
GUI warnings should go to the log, not to the console (which may not be connected at all).
This commit is contained in:
parent
458720e5e9
commit
edd46566bd
1 changed files with 1 additions and 1 deletions
|
@ -468,7 +468,7 @@ bool SendCoinsDialog::signWithExternalSigner(PartiallySignedTransaction& psbtx,
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (err) {
|
if (err) {
|
||||||
tfm::format(std::cerr, "Failed to sign PSBT");
|
qWarning() << "Failed to sign PSBT";
|
||||||
processSendCoinsReturn(WalletModel::TransactionCreationFailed);
|
processSendCoinsReturn(WalletModel::TransactionCreationFailed);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue