remove more tab noise

This commit is contained in:
Stephen Pair 2013-07-07 14:07:41 -04:00
parent 2bd241555e
commit 467336fdcb
1 changed files with 3 additions and 3 deletions

View File

@ -6,7 +6,7 @@ function ClassSpec(b) {
function BitcoinAddress(data, encoding) { function BitcoinAddress(data, encoding) {
this.data = data; this.data = data;
this.__proto__ = encodings[encoding || 'base58']; this.__proto__ = encodings[encoding || 'base58'];
}; };
// return the bitcoin address version (the first byte of the address) // return the bitcoin address version (the first byte of the address)
BitcoinAddress.prototype.version = function() { BitcoinAddress.prototype.version = function() {
@ -41,7 +41,7 @@ function ClassSpec(b) {
// convert to a string (in base58 form) // convert to a string (in base58 form)
BitcoinAddress.prototype.toString = function() { BitcoinAddress.prototype.toString = function() {
return this.as('base58'); return this.as('base58');
}; };
// Setup support for various address encodings. The object for // Setup support for various address encodings. The object for
// each encoding inherits from the BitcoinAddress prototype. This // each encoding inherits from the BitcoinAddress prototype. This
@ -94,6 +94,6 @@ function ClassSpec(b) {
encodings[k].__proto__ = BitcoinAddress.prototype; encodings[k].__proto__ = BitcoinAddress.prototype;
}; };
return BitcoinAddress; return BitcoinAddress;
}; };
module.defineClass(ClassSpec); module.defineClass(ClassSpec);