You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//! Holds a timestamp at which point the wallet is scheduled (externally) to be relocked. Caller must arrange for actual relocking to occur via Lock().
872
-
int64_t nRelockTime = 0;
872
+
int64_t nRelockTime GUARDED_BY(cs_wallet){0};
873
873
874
+
// Used to prevent concurrent calls to walletpassphrase RPC.
0 commit comments