aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet_rpc_server.cpp
diff options
context:
space:
mode:
authormoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-10-26 14:25:20 +0000
committermoneromooo-monero <moneromooo-monero@users.noreply.github.com>2018-11-03 15:04:37 +0000
commitf26ce08c8abbff51f50c13848e8899865862515d (patch)
tree890e4e775bb5c146be32e7ce4b8dbcbbff7502ec /src/wallet/wallet_rpc_server.cpp
parentMerge pull request #4697 (diff)
downloadmonero-f26ce08c8abbff51f50c13848e8899865862515d.tar.xz
wallet: add a non destructive blockchain rescan
Diffstat (limited to 'src/wallet/wallet_rpc_server.cpp')
-rw-r--r--src/wallet/wallet_rpc_server.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet_rpc_server.cpp b/src/wallet/wallet_rpc_server.cpp
index 1b63d65b6..09f78d593 100644
--- a/src/wallet/wallet_rpc_server.cpp
+++ b/src/wallet/wallet_rpc_server.cpp
@@ -1613,7 +1613,7 @@ namespace tools
try
{
- m_wallet->rescan_blockchain();
+ m_wallet->rescan_blockchain(req.hard);
}
catch (const std::exception& e)
{