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/wallet/wallet2.cpp | |
parent | Merge pull request #4290 (diff) | |
download | monero-7a76354c8bcbe85f6553914241da5ac1bb932b37.tar.xz |
wallet2: import_multisig forward refresh exception
Diffstat (limited to 'src/wallet/wallet2.cpp')
-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; |