aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-10-25 23:23:59 +0100
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2016-10-26 13:17:29 +0100
commit069d688cf71f5e80844f3cb2a16b275f0e7bdf29 (patch)
tree8c3320250663d6fc8ac791c32f53275a96f2fd1b /src/wallet
parentwallet: fix pre-rct cold wallet signing not splitting change (diff)
downloadmonero-069d688cf71f5e80844f3cb2a16b275f0e7bdf29.tar.xz
simplewallet: log transactions to submit in submit_transfer
Not as trustworthy as this is in the view wallet, the one that's considered compromised.
Diffstat (limited to '')
-rw-r--r--src/wallet/wallet2.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp
index 55e4fa4de..a02c2e4e5 100644
--- a/src/wallet/wallet2.cpp
+++ b/src/wallet/wallet2.cpp
@@ -2706,7 +2706,8 @@ bool wallet2::load_tx(const std::string &signed_filename, std::vector<tools::wal
LOG_PRINT_L0("Failed to parse data from " << signed_filename);
return false;
}
- LOG_PRINT_L1("Loaded signed tx data from binary: " << signed_txs.ptx.size() << " transactions");
+ LOG_PRINT_L0("Loaded signed tx data from binary: " << signed_txs.ptx.size() << " transactions");
+ for (auto &ptx: signed_txs.ptx) LOG_PRINT_L0(cryptonote::obj_to_json_str(ptx.tx));
ptx = signed_txs.ptx;