diff options
author | j-berman <justinberman@protonmail.com> | 2022-10-18 13:47:50 -0500 |
---|---|---|
committer | j-berman <justinberman@protonmail.com> | 2022-10-18 13:48:43 -0500 |
commit | cac50834271fae2e23561150ac650c98e710ff5c (patch) | |
tree | aeaacbb2219c943c11a4bab34ff616d97477f93c /src/wallet/api | |
parent | Merge pull request #8587 (diff) | |
download | monero-cac50834271fae2e23561150ac650c98e710ff5c.tar.xz |
wallet2: fix create view-only wallet from existing wallet
Diffstat (limited to 'src/wallet/api')
-rw-r--r-- | src/wallet/api/wallet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index c4d3856d4..4dbfffed2 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -535,7 +535,7 @@ bool WalletImpl::createWatchOnly(const std::string &path, const std::string &pas view_wallet->generate(path, password, address, viewkey); // Export/Import outputs - auto outputs = m_wallet->export_outputs(); + auto outputs = m_wallet->export_outputs(true/*all*/); view_wallet->import_outputs(outputs); // Copy scanned blockchain @@ -553,7 +553,7 @@ bool WalletImpl::createWatchOnly(const std::string &path, const std::string &pas // Export/Import key images // We already know the spent status from the outputs we exported, thus no need to check them again - auto key_images = m_wallet->export_key_images(); + auto key_images = m_wallet->export_key_images(true/*all*/); uint64_t spent = 0; uint64_t unspent = 0; view_wallet->import_key_images(key_images.second, key_images.first, spent, unspent, false); |