remove some tab noise

This commit is contained in:
Stephen Pair 2013-07-07 14:06:03 -04:00
parent d3942ff837
commit 2bd241555e
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
require('classtool');
function ClassSpec(b) {
var base58 = b.base58 || require('base58-native').base58Check;
var base58 = b.base58 || require('base58-native').base58Check;
function BitcoinAddress(data, encoding) {
function BitcoinAddress(data, encoding) {
this.data = data;
this.__proto__ = encodings[encoding || 'base58'];
};