Browse Source

.

activeAddress
Ivan Socolsky 10 years ago
parent
commit
a9aa9de3ea
  1. 2
      lib/model/copayer.js

2
lib/model/copayer.js

@ -23,7 +23,7 @@ function Copayer(opts) {
this.name = opts.name; this.name = opts.name;
this.xPubKey = opts.xPubKey; this.xPubKey = opts.xPubKey;
this.xPubKeySignature = opts.xPubKeySignature; // So third parties can check independently this.xPubKeySignature = opts.xPubKeySignature; // So third parties can check independently
this.signingPubKey = opts.signingPubKey || this.getSigningPubKey(); this.signingPubKey = this.getSigningPubKey();
}; };
util.inherits(Copayer, Addressable); util.inherits(Copayer, Addressable);

Loading…
Cancel
Save