aboutsummaryrefslogtreecommitdiff
path: root/src/wallet
diff options
context:
space:
mode:
authormonero-project <sempre.amaro@gmail.com>2014-04-30 11:37:25 -0400
committermonero-project <sempre.amaro@gmail.com>2014-04-30 11:37:25 -0400
commitcf8fe2867654f0061a17ca4780e736a170a8f87b (patch)
tree2346f3742a1a1cde74f7901c1bf7f46a2949af8e /src/wallet
parentvoting stopped (diff)
downloadmonero-cf8fe2867654f0061a17ca4780e736a170a8f87b.tar.xz
Temporarily disable error relating to mangled tx_extra fields
Diffstat (limited to 'src/wallet')
-rw-r--r--src/wallet/wallet2.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp
index 6a573c49e..47bf80e36 100644
--- a/src/wallet/wallet2.cpp
+++ b/src/wallet/wallet2.cpp
@@ -38,7 +38,10 @@ void wallet2::process_new_transaction(const cryptonote::transaction& tx, uint64_
uint64_t tx_money_got_in_outs = 0;
crypto::public_key tx_pub_key = null_pkey;
bool r = parse_and_validate_tx_extra(tx, tx_pub_key);
- THROW_WALLET_EXCEPTION_IF(!r, error::tx_extra_parse_error, tx);
+
+ // Temporarily disabled due to messed up tx_extra from someone
+ // screwing around with MMing. 2014-04-30
+ // THROW_WALLET_EXCEPTION_IF(!r, error::tx_extra_parse_error, tx);
r = lookup_acc_outs(m_account.get_keys(), tx, tx_pub_key, outs, tx_money_got_in_outs);
THROW_WALLET_EXCEPTION_IF(!r, error::acc_outs_lookup_error, tx, tx_pub_key, m_account.get_keys());