From a9aa9de3ead01cf40d4e5156d58a1a875d681ea4 Mon Sep 17 00:00:00 2001 From: Ivan Socolsky Date: Tue, 3 Feb 2015 09:54:23 -0300 Subject: [PATCH] . --- lib/model/copayer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/model/copayer.js b/lib/model/copayer.js index 0590e6a..f6885d0 100644 --- a/lib/model/copayer.js +++ b/lib/model/copayer.js @@ -23,7 +23,7 @@ function Copayer(opts) { this.name = opts.name; this.xPubKey = opts.xPubKey; this.xPubKeySignature = opts.xPubKeySignature; // So third parties can check independently - this.signingPubKey = opts.signingPubKey || this.getSigningPubKey(); + this.signingPubKey = this.getSigningPubKey(); }; util.inherits(Copayer, Addressable);