diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-10-06 22:54:19 +0400 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-10-06 22:54:19 +0400 |
commit | 6cf36b4e96e7b92b97e686c4da6c9d0e2fe677be (patch) | |
tree | 9dac508bf7c2c3a6e00f9f8fcd36c0390369d0b1 /src/wallet/wallet2.cpp | |
parent | Merge pull request #2529 (diff) | |
parent | construct_tx_and_get_tx_key: return sorted sources for print_ring_memebrs to ... (diff) | |
download | monero-6cf36b4e96e7b92b97e686c4da6c9d0e2fe677be.tar.xz |
Merge pull request #2530
cbc5508b construct_tx_and_get_tx_key: return sorted sources for print_ring_memebrs to work properly (stoffu)
Diffstat (limited to 'src/wallet/wallet2.cpp')
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 18e63f596..cacdc6b3e 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -3334,7 +3334,7 @@ bool wallet2::sign_tx(unsigned_tx_set &exported_txs, const std::string &signed_f signed_tx_set signed_txes; for (size_t n = 0; n < exported_txs.txes.size(); ++n) { - const tools::wallet2::tx_construction_data &sd = exported_txs.txes[n]; + tools::wallet2::tx_construction_data &sd = exported_txs.txes[n]; LOG_PRINT_L1(" " << (n+1) << ": " << sd.sources.size() << " inputs, ring size " << sd.sources[0].outputs.size()); signed_txes.ptx.push_back(pending_tx()); tools::wallet2::pending_tx &ptx = signed_txes.ptx.back(); |