mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-17 13:07:54 +02:00
Move nWalletUnlockTime to CWallet::nRelockTime, and name timed task unique per CWallet
This commit is contained in:
parent
d77ad6d416
commit
2e518e313b
4 changed files with 11 additions and 16 deletions
|
|
@ -102,7 +102,7 @@ UniValue getinfo(const JSONRPCRequest& request)
|
|||
obj.push_back(Pair("keypoolsize", (int)pwallet->GetKeyPoolSize()));
|
||||
}
|
||||
if (pwallet && pwallet->IsCrypted())
|
||||
obj.push_back(Pair("unlocked_until", nWalletUnlockTime));
|
||||
obj.push_back(Pair("unlocked_until", pwallet->nRelockTime));
|
||||
obj.push_back(Pair("paytxfee", ValueFromAmount(payTxFee.GetFeePerK())));
|
||||
#endif
|
||||
obj.push_back(Pair("relayfee", ValueFromAmount(::minRelayTxFee.GetFeePerK())));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue