diff options
author | Jaquee <jaquee.monero@gmail.com> | 2017-08-18 14:19:07 +0200 |
---|---|---|
committer | Jaquee <jaquee.monero@gmail.com> | 2017-08-18 16:11:30 +0200 |
commit | 225a25f327f42a6f97e594e94d899ded55ef9cad (patch) | |
tree | 0d227faa9a5bd0e101d483a58b60cd69c70e0e37 /src/wallet/wallet2.h | |
parent | Merge pull request #2303 (diff) | |
download | monero-225a25f327f42a6f97e594e94d899ded55ef9cad.tar.xz |
import_key_images - allow importing without being connected to daemon
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index ba9abacf5..c275ba2a3 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -585,7 +585,7 @@ namespace tools bool export_key_images(const std::string filename); std::vector<std::pair<crypto::key_image, crypto::signature>> export_key_images() const; - uint64_t import_key_images(const std::vector<std::pair<crypto::key_image, crypto::signature>> &signed_key_images, uint64_t &spent, uint64_t &unspent); + uint64_t import_key_images(const std::vector<std::pair<crypto::key_image, crypto::signature>> &signed_key_images, uint64_t &spent, uint64_t &unspent, bool check_spent = true); uint64_t import_key_images(const std::string &filename, uint64_t &spent, uint64_t &unspent); void update_pool_state(bool refreshed = false); |