qt, refactor: remove redundant scope in TransactionDesc::FormatTxStatus()

This commit is contained in:
w0xlt 2022-02-18 15:41:05 -03:00
parent f1ce67f09f
commit b1bc1431db

View file

@ -33,7 +33,6 @@ using wallet::ISMINE_WATCH_ONLY;
using wallet::isminetype;
QString TransactionDesc::FormatTxStatus(const interfaces::WalletTx& wtx, const interfaces::WalletTxStatus& status, bool inMempool, int numBlocks)
{
{
int nDepth = status.depth_in_main_chain;
if (nDepth < 0) {
@ -47,7 +46,6 @@ QString TransactionDesc::FormatTxStatus(const interfaces::WalletTx& wtx, const i
return tr("%1 confirmations").arg(nDepth);
}
}
}
// Takes an encoded PaymentRequest as a string and tries to find the Common Name of the X.509 certificate
// used to sign the PaymentRequest.