remove unused bs58 core dependency

This commit is contained in:
Daniel Cousens 2014-10-03 19:11:38 +10:00
parent c96a1bce83
commit ed01ed5bb4
2 changed files with 2 additions and 2 deletions

View file

@ -37,6 +37,7 @@
}, },
"devDependencies": { "devDependencies": {
"browserify": "^5.12.0", "browserify": "^5.12.0",
"bs58": "^2.0.0",
"coveralls": "^2.11.2", "coveralls": "^2.11.2",
"helloblock-js": "^0.2.5", "helloblock-js": "^0.2.5",
"istanbul": "^0.3.2", "istanbul": "^0.3.2",
@ -73,7 +74,6 @@
}, },
"dependencies": { "dependencies": {
"bigi": "^1.1.0", "bigi": "^1.1.0",
"bs58": "1.2.1",
"bs58check": "1.0.1", "bs58check": "1.0.1",
"crypto-browserify": "3.2.4", "crypto-browserify": "3.2.4",
"ecurve": "1.0.0" "ecurve": "1.0.0"

View file

@ -27,7 +27,7 @@ describe('Bitcoin-core', function() {
it('can decode ' + fb58, function() { it('can decode ' + fb58, function() {
var buffer = base58.decode(fb58) var buffer = base58.decode(fb58)
var actual = buffer.toString('hex') var actual = new Buffer(buffer).toString('hex')
assert.equal(actual, fhex) assert.equal(actual, fhex)
}) })