@ -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);