simplewallet: log transactions to submit in submit_transfer

Not as trustworthy as this is in the view wallet, the one
that's considered compromised.
This commit is contained in:
moneromooo-monero
2016-10-26 13:17:29 +01:00
parent 31abac4daf
commit 069d688cf7
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -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;