From 7a3bfa655a26bc062053218ab9dfb0f63801b8d6 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Tue, 30 May 2023 14:47:17 +0200 Subject: [PATCH] Changed text in simplewallet by pecial request from @ravaga --- src/simplewallet/simplewallet.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/simplewallet/simplewallet.cpp b/src/simplewallet/simplewallet.cpp index 74e74b59..972b8589 100644 --- a/src/simplewallet/simplewallet.cpp +++ b/src/simplewallet/simplewallet.cpp @@ -1468,9 +1468,9 @@ bool simple_wallet::transfer(const std::vector &args_) if (!m_wallet->is_watch_only()) { if(wrapped_transaction) - success_msg_writer(true) << "Money successfully sent to wZano custody wallet, transaction " << get_transaction_hash(tx) << ", " << get_object_blobsize(tx) << " bytes"; + success_msg_writer(true) << "Transaction successfully sent to wZano custody wallet, id: " << get_transaction_hash(tx) << ", " << get_object_blobsize(tx) << " bytes"; else - success_msg_writer(true) << "Money successfully sent, transaction " << get_transaction_hash(tx) << ", " << get_object_blobsize(tx) << " bytes"; + success_msg_writer(true) << "Transaction successfully sent, id: " << get_transaction_hash(tx) << ", " << get_object_blobsize(tx) << " bytes"; } else {