diff options
author | Riccardo Spagni <ric@spagni.net> | 2017-08-07 15:09:17 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2017-08-07 15:09:17 +0200 |
commit | 24dd5e87afe9ffde24a1f8b83acb6b888fd3e8b5 (patch) | |
tree | 32e3bcacda8e20aac80fd93a99001a23c4804ea8 /src/wallet/wallet2.h | |
parent | Merge pull request #2201 (diff) | |
parent | wallet2: fix temporarily missing incoming tx when being mined (diff) | |
download | monero-24dd5e87afe9ffde24a1f8b83acb6b888fd3e8b5.tar.xz |
Merge pull request #2203
0c57df97 wallet2: fix temporarily missing incoming tx when being mined (moneromooo-monero)
Diffstat (limited to 'src/wallet/wallet2.h')
-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 e7692badb..b853c5f3c 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -585,7 +585,7 @@ namespace tools 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::string &filename, uint64_t &spent, uint64_t &unspent); - void update_pool_state(); + void update_pool_state(bool refreshed = false); std::string encrypt(const std::string &plaintext, const crypto::secret_key &skey, bool authenticated = true) const; std::string encrypt_with_view_secret_key(const std::string &plaintext, bool authenticated = true) const; |