Merge pull request #4360

7a76354c wallet2: import_multisig forward refresh exception (naughtyfox)
This commit is contained in:
Riccardo Spagni 2018-09-18 17:58:14 +02:00
commit 08f0c60ffc
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD
1 changed files with 6 additions and 1 deletions

View File

@ -10830,7 +10830,12 @@ size_t wallet2::import_multisig(std::vector<cryptonote::blobdata> blobs)
refresh(false);
}
catch (...) {}
catch (...)
{
m_multisig_rescan_info = NULL;
m_multisig_rescan_k = NULL;
throw;
}
m_multisig_rescan_info = NULL;
m_multisig_rescan_k = NULL;