diff --git a/test/privatekey.js b/test/privatekey.js index 7cae44bb1..cdb26d432 100644 --- a/test/privatekey.js +++ b/test/privatekey.js @@ -135,7 +135,7 @@ describe('PrivateKey', function() { it('should create a livenet private key', function() { var privkey = new PrivateKey(BN.fromBuffer(buf), 'livenet'); - privkey.toString().should.equal(wifLivenet); + privkey.toWIF().should.equal(wifLivenet); }); it('should create a default network private key', function() { @@ -197,7 +197,7 @@ describe('PrivateKey', function() { it('should output this address correctly', function() { var privkey = PrivateKey.fromWIF(wifLivenetUncompressed); - privkey.toString().should.equal(wifLivenetUncompressed); + privkey.toWIF().should.equal(wifLivenetUncompressed); }); }); @@ -221,20 +221,20 @@ describe('PrivateKey', function() { it('should output known livenet address for console', function() { var privkey = PrivateKey.fromWIF('L3T1s1TYP9oyhHpXgkyLoJFGniEgkv2Jhi138d7R2yJ9F4QdDU2m'); privkey.inspect().should.equal( - '' + '' ); }); it('should output known testnet address for console', function() { var privkey = PrivateKey.fromWIF('cR4qogdN9UxLZJXCNFNwDRRZNeLRWuds9TTSuLNweFVjiaE4gPaq'); privkey.inspect().should.equal( - '' + '' ); }); it('outputs "uncompressed" for uncompressed imported WIFs', function() { var privkey = PrivateKey.fromWIF(wifLivenetUncompressed); - privkey.inspect().should.equal(''); + privkey.inspect().should.equal(''); }); }); @@ -261,7 +261,7 @@ describe('PrivateKey', function() { describe('#toBuffer', function() { it('should output known buffer', function() { var privkey = new PrivateKey(BN.fromBuffer(buf), 'livenet'); - privkey.toBuffer().toString('hex').should.equal(buf.toString('hex')); + privkey.toString().should.equal(buf.toString('hex')); }); }); @@ -316,7 +316,7 @@ describe('PrivateKey', function() { it('should parse this uncompressed livenet address correctly', function() { var privkey = PrivateKey.fromString(wifLivenetUncompressed); - privkey.toString().should.equal(wifLivenetUncompressed); + privkey.toString().should.equal("96c132224121b509b7d0a16245e957d9192609c5637c6228311287b1be21627a"); }); });