aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2022-04-08 16:20:37 +0200
committerselsta <selsta@sent.at>2022-04-08 16:20:37 +0200
commit3593a986d8fa632337bc9cf48352ba5574b8449c (patch)
tree41860b1db7f7edf0472f2d59ecd5e8b7b1e201e1
parentMerge pull request #8242 (diff)
downloadmonero-3593a986d8fa632337bc9cf48352ba5574b8449c.tar.xz
simplewallet: fix integrated_address output string
-rw-r--r--src/simplewallet/simplewallet.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp
index 38cf6f757..be6bf6388 100644
--- a/src/simplewallet/simplewallet.cpp
+++ b/src/simplewallet/simplewallet.cpp
@@ -9820,7 +9820,7 @@ bool simple_wallet::print_integrated_address(const std::vector<std::string> &arg
{
if (info.has_payment_id)
{
- success_msg_writer() << boost::format(tr("Integrated address: %s, payment ID: %s")) %
+ success_msg_writer() << boost::format(tr("Standard address: %s, payment ID: %s")) %
get_account_address_as_str(m_wallet->nettype(), false, info.address) % epee::string_tools::pod_to_hex(info.payment_id);
device_show_integrated(info.payment_id);
}