diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2022-04-19 22:18:42 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2022-04-19 22:18:42 -0500 |
| commit | 4abbf442b4f96cb4b857a8ebfe69daabc5c81349 (patch) | |
| tree | f14c52b78bc78a1eedd341988ef3fe55d8e4561f | |
| parent | 5c471005eb689e4597753ac6e719b4d597deefc3 (diff) | |
| parent | 3593a986d8fa632337bc9cf48352ba5574b8449c (diff) | |
| download | monzero-core-4abbf442b4f96cb4b857a8ebfe69daabc5c81349.tar.gz monzero-core-4abbf442b4f96cb4b857a8ebfe69daabc5c81349.tar.xz monzero-core-4abbf442b4f96cb4b857a8ebfe69daabc5c81349.zip | |
Merge pull request #8245
3593a98 simplewallet: fix integrated_address output string (selsta)
| -rw-r--r-- | src/simplewallet/simplewallet.cpp | 2 |
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); } |
