diff options
| author | doy-lee <doylet@protonmail.com> | 2018-09-26 12:38:39 +0000 |
|---|---|---|
| committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-10-02 08:53:28 +0000 |
| commit | bccd88ddf5f09a7bf774b3437a6396ac9953aad5 (patch) | |
| tree | f594fbd871aef0d533ff1b9ecb1a4e51752917cb /src/wallet/wallet2.cpp | |
| parent | 83d8f03c2338e865ce72f4e2d46d43a48530ab10 (diff) | |
| download | monzero-core-bccd88ddf5f09a7bf774b3437a6396ac9953aad5.tar.gz monzero-core-bccd88ddf5f09a7bf774b3437a6396ac9953aad5.tar.xz monzero-core-bccd88ddf5f09a7bf774b3437a6396ac9953aad5.zip | |
wallet2: clear found out for every tx key
Avoids triggering the sanity check
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 299b4afeb..14077bc9b 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -1339,7 +1339,6 @@ void wallet2::process_new_transaction(const crypto::hash &txid, const cryptonote // (that is, the prunable stuff may or may not be included) if (!miner_tx && !pool) process_unconfirmed(txid, tx, height); - std::vector<size_t> outs; std::unordered_map<cryptonote::subaddress_index, uint64_t> tx_money_got_in_outs; // per receiving subaddress index crypto::public_key tx_pub_key = null_pkey; bool notify = false; @@ -1362,6 +1361,7 @@ void wallet2::process_new_transaction(const crypto::hash &txid, const cryptonote uint64_t total_received_1 = 0; while (!tx.vout.empty()) { + std::vector<size_t> outs; // if tx.vout is not empty, we loop through all tx pubkeys tx_extra_pub_key pub_key_field; |
