wallet2: resume processing when tx extra is partially broken
Motivated by https://monero.stackexchange.com/questions/10483 Some exchanges appear to have customized the wallet software in an inappropriate way, making the tx extra field partially unreadable. PR #3716 changed the wallet behavior disallowing such partially valid tx extra. An example tx reported by the user is e87c675a85f34ecac58a8846613d25062f1813e1023c552b705afad32b972c38 where the normal tx pubkey appears again with the aditional tx pubkeys tag `04` which is inappropriate.
This commit is contained in:
parent
84dd674cd0
commit
b5573fc231
|
@ -1362,7 +1362,7 @@ void wallet2::cache_tx_data(const cryptonote::transaction& tx, const crypto::has
|
|||
{
|
||||
// Extra may only be partially parsed, it's OK if tx_extra_fields contains public key
|
||||
LOG_PRINT_L0("Transaction extra has unsupported format: " << txid);
|
||||
tx_cache_data.tx_extra_fields.clear();
|
||||
if (tx_cache_data.tx_extra_fields.empty())
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue