mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-03-29 09:55:49 +02:00
Merge #9951: Wallet database handling abstractions/simplifications
911a480wallet: Add comment describing the various classes in walletdb.h (Wladimir J. van der Laan)69d2e9bwallet: Make IsDummy private in CWalletDBWrapper (Wladimir J. van der Laan)3323281wallet: CWalletDB CDB composition not inheritance (Wladimir J. van der Laan)be9e1a9wallet: Reduce references to global bitdb environment (Wladimir J. van der Laan)071c955wallet: Get rid of fFileBacked (Wladimir J. van der Laan)71afe3cwallet: Introduce database handle wrapper (Wladimir J. van der Laan) Tree-SHA512: e4e72953c61a2f6995d609a32f8ed8e18cab9a92bc9e193d46a1d1f06d9daa5c6da6fce2867d4e3ba4fc0439141901a3d35f246486f0fa8f59587786379dfcbd
This commit is contained in:
@@ -2078,7 +2078,7 @@ UniValue walletpassphrase(const JSONRPCRequest& request)
|
||||
|
||||
int64_t nSleepTime = request.params[1].get_int64();
|
||||
pwallet->nRelockTime = GetTime() + nSleepTime;
|
||||
RPCRunLater(strprintf("lockwallet(%s)", pwallet->strWalletFile), boost::bind(LockWallet, pwallet), nSleepTime);
|
||||
RPCRunLater(strprintf("lockwallet(%s)", pwallet->GetName()), boost::bind(LockWallet, pwallet), nSleepTime);
|
||||
|
||||
return NullUniValue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user