We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0758d8 commit 4da243bCopy full SHA for 4da243b
src/qt/psbtoperationsdialog.cpp
@@ -182,6 +182,8 @@ std::string PSBTOperationsDialog::renderTransaction(const PartiallySignedTransac
182
tx_description.append(tr(" * Sends %1 to %2")
183
.arg(BitcoinUnits::formatWithUnit(BitcoinUnit::BTC, out.nValue))
184
.arg(QString::fromStdString(EncodeDestination(address))));
185
+ // Check if the address is one of ours
186
+ if (m_wallet_model != nullptr && m_wallet_model->wallet().txoutIsMine(out)) tx_description.append(" (" + tr("own address") + ")");
187
tx_description.append("<br>");
188
}
189
0 commit comments