diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-12-25 21:13:33 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-12-25 21:13:33 +0200 |
commit | 2d1965f31b0299eca243705e12e90e35d85a114d (patch) | |
tree | 477232f08105521fa6cbdb93a2c1a733323164fc /src/wallet | |
parent | Merge pull request #2994 (diff) | |
parent | wallet2: detect spends in txes without a valid public tx key (diff) | |
download | monero-2d1965f31b0299eca243705e12e90e35d85a114d.tar.xz |
Merge pull request #2888
ca18ff64 wallet2: detect spends in txes without a valid public tx key (moneromooo-monero)
6afcd8e3 cn_deserialize: print tx extra fields in partly decoded tx extra (moneromooo-monero)
Diffstat (limited to 'src/wallet')
-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 04c6ee236..c5b366064 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -986,7 +986,7 @@ void wallet2::process_new_transaction(const crypto::hash &txid, const cryptonote LOG_PRINT_L0("Public key wasn't found in the transaction extra. Skipping transaction " << txid); if(0 != m_callback) m_callback->on_skip_transaction(height, txid, tx); - return; + break; } int num_vouts_received = 0; |