fix forgotten currency dependant crypto

This commit is contained in:
Michael Muré 2014-03-19 22:53:18 +01:00
parent 61aac517c6
commit a99b7d6d41

View file

@ -4,13 +4,10 @@ Bitcoin.Address = function (bytes) {
bytes = Bitcoin.Address.decodeString(bytes); bytes = Bitcoin.Address.decodeString(bytes);
} }
this.hash = bytes; this.hash = bytes;
this.version = Bitcoin.Address.networkVersion;
}; };
Bitcoin.Address.networkVersion = 0x00; // mainnet
/** /**
* Serialize this object as a standard Bitcoin address. * Serialize this object as a standard currency address.
* *
* Returns the address as a base58-encoded string in the standardized format. * Returns the address as a base58-encoded string in the standardized format.
*/ */
@ -19,7 +16,7 @@ Bitcoin.Address.prototype.toString = function () {
var hash = this.hash.slice(0); var hash = this.hash.slice(0);
// Version // Version
hash.unshift(this.version); hash.unshift(janin.currency.networkVersion());
var checksum = Crypto.SHA256(Crypto.SHA256(hash, { asBytes: true }), { asBytes: true }); var checksum = Crypto.SHA256(Crypto.SHA256(hash, { asBytes: true }), { asBytes: true });
var bytes = hash.concat(checksum.slice(0, 4)); var bytes = hash.concat(checksum.slice(0, 4));
return Bitcoin.Base58.encode(bytes); return Bitcoin.Base58.encode(bytes);
@ -44,11 +41,5 @@ Bitcoin.Address.decodeString = function (string) {
throw "Checksum validation failed!"; throw "Checksum validation failed!";
} }
var version = hash.shift();
if (version != 0) {
throw "Version " + version + " not supported!";
}
return hash; return hash;
}; };