Use std::bind instead of boost::bind to re-lock the wallet

Change suggested by Marco Falke.
This commit is contained in:
Suhas Daftuar 2018-04-06 15:05:32 -04:00
parent 662d19ff72
commit 2b2b96cd45
1 changed files with 3 additions and 1 deletions

View File

@ -37,6 +37,8 @@
#include <univalue.h>
#include <functional>
static const std::string WALLET_ENDPOINT_BASE = "/wallet/";
CWallet *GetWalletForJSONRPCRequest(const JSONRPCRequest& request)
@ -2402,7 +2404,7 @@ UniValue walletpassphrase(const JSONRPCRequest& request)
pwallet->TopUpKeyPool();
pwallet->nRelockTime = GetTime() + nSleepTime;
RPCRunLater(strprintf("lockwallet(%s)", pwallet->GetName()), boost::bind(LockWallet, pwallet), nSleepTime);
RPCRunLater(strprintf("lockwallet(%s)", pwallet->GetName()), std::bind(LockWallet, pwallet), nSleepTime);
return NullUniValue;
}