add indexes

This commit is contained in:
Matias Alejo Garcia 2015-02-02 09:21:29 -03:00
parent 399c412cde
commit d6733de12d
2 changed files with 4 additions and 6 deletions

View File

@ -16,9 +16,7 @@ function Copayer(opts) {
this.name = opts.name;
this.xPubKey = opts.xPubKey;
this.xPubKeySignature = opts.xPubKeySignature; // So third parties can check independently
if (opts.xPubKey) {
this.signingPubKey = this.getSigningPubKey();
}
this.signingPubKey = opts.signingPubKey || this.getSigningPubKey();
};
Copayer.prototype.getSigningPubKey = function () {
@ -29,15 +27,12 @@ Copayer.prototype.getSigningPubKey = function () {
Copayer.fromObj = function (obj) {
var x = new Copayer();
x.version = obj.version;
x.createdOn = obj.createdOn;
x.id = obj.id;
x.name = obj.name;
x.xPubKey = obj.xPubKey;
x.xPubKeySignature = obj.xPubKeySignature;
x.signingPubKey = obj.signingPubKey;
return x;
};

View File

@ -19,6 +19,9 @@ function Wallet(opts) {
this.addressIndex = 0;
this.copayers = [];
this.pubKey = opts.pubKey;
this.receiveAddressIndex = 0;
this.changeAddressIndex = 0;
};
/* For compressed keys, m*73 + n*34 <= 496 */