From 38a30aceed952b1f94b71837a5d16f565e5dc0e5 Mon Sep 17 00:00:00 2001 From: Christopher Jeffrey Date: Wed, 11 Jan 2017 21:47:09 -0800 Subject: [PATCH] masterkey: remove useless arg for lock. --- lib/wallet/masterkey.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/wallet/masterkey.js b/lib/wallet/masterkey.js index 57aa2de9..b7998248 100644 --- a/lib/wallet/masterkey.js +++ b/lib/wallet/masterkey.js @@ -48,7 +48,7 @@ function MasterKey(options) { this.timer = null; this.until = 0; this._onTimeout = this.lock.bind(this); - this.locker = new Lock(this); + this.locker = new Lock(); if (options) this.fromOptions(options);