diff options
| author | naughtyfox <mail.for.milo@gmail.com> | 2018-09-10 18:45:37 +0300 |
|---|---|---|
| committer | naughtyfox <mail.for.milo@gmail.com> | 2018-09-10 18:45:37 +0300 |
| commit | 7a76354c8bcbe85f6553914241da5ac1bb932b37 (patch) | |
| tree | 59d6bf6d96021e565f78631ddff4324049d2b793 /src | |
| parent | fad88e18a9795b377676ad6f63c1772868e0d761 (diff) | |
| download | monzero-core-7a76354c8bcbe85f6553914241da5ac1bb932b37.tar.gz monzero-core-7a76354c8bcbe85f6553914241da5ac1bb932b37.tar.xz monzero-core-7a76354c8bcbe85f6553914241da5ac1bb932b37.zip | |
wallet2: import_multisig forward refresh exception
Diffstat (limited to 'src')
| -rw-r--r-- | src/wallet/wallet2.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index a2e36706e..f6dfd3b45 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -10878,7 +10878,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; |
