mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-04-29 14:59:39 -04:00
Merge bitcoin-core/gui#868: Replace stray tfm::format to cerr with qWarning
Some checks are pending
CI / test each commit (push) Waiting to run
CI / macOS 14 native, arm64, no depends, sqlite only, gui (push) Waiting to run
CI / macOS 14 native, arm64, fuzz (push) Waiting to run
CI / Windows native, VS 2022 (push) Waiting to run
CI / Windows native, fuzz, VS 2022 (push) Waiting to run
CI / Linux->Windows cross, no tests (push) Waiting to run
CI / Windows, test cross-built (push) Blocked by required conditions
CI / ASan + LSan + UBSan + integer, no depends, USDT (push) Waiting to run
Some checks are pending
CI / test each commit (push) Waiting to run
CI / macOS 14 native, arm64, no depends, sqlite only, gui (push) Waiting to run
CI / macOS 14 native, arm64, fuzz (push) Waiting to run
CI / Windows native, VS 2022 (push) Waiting to run
CI / Windows native, fuzz, VS 2022 (push) Waiting to run
CI / Linux->Windows cross, no tests (push) Waiting to run
CI / Windows, test cross-built (push) Blocked by required conditions
CI / ASan + LSan + UBSan + integer, no depends, USDT (push) Waiting to run
edd46566bd
qt: Replace stray tfm::format to cerr with qWarning (laanwj) Pull request description: GUI warnings should go to the log, not to the console (which may not be connected at all). ACKs for top commit: hebasto: ACKedd46566bd
, I have reviewed the code and it looks OK. Tree-SHA512: 32944e00dae0c62bb23e3d7abd486b63e445702483ca03c74c3057ef942f06e771d4d3d3a58fd728582889d6b638fae11ecc536a25febfd89a28522b7d6d08ba
This commit is contained in:
commit
de90b47ea0
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