Browse Source

Update addresses.js

v4
Apichan Chaiyutthasat 7 years ago
committed by GitHub
parent
commit
b93d9d99cc
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      test/integration/addresses.js

3
test/integration/addresses.js

@ -19,6 +19,7 @@ function rng () { return Buffer.from('zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz') }
describe('bitcoinjs-lib (addresses)', function () { describe('bitcoinjs-lib (addresses)', function () {
it('can generate a random address', function () { it('can generate a random address', function () {
// in production: const keyPair = bitcoin.ECPair.makeRandom({})
const keyPair = bitcoin.ECPair.makeRandom({ rng: rng }) const keyPair = bitcoin.ECPair.makeRandom({ rng: rng })
const { address } = bitcoin.payments.p2pkh({ pubkey: keyPair.publicKey }) const { address } = bitcoin.payments.p2pkh({ pubkey: keyPair.publicKey })
@ -121,6 +122,7 @@ describe('bitcoinjs-lib (addresses)', function () {
// other networks // other networks
it('can generate a Testnet address', function () { it('can generate a Testnet address', function () {
const testnet = bitcoin.networks.testnet const testnet = bitcoin.networks.testnet
// in production: const keyPair = bitcoin.ECPair.makeRandom({ network: testnet })
const keyPair = bitcoin.ECPair.makeRandom({ network: testnet, rng: rng }) const keyPair = bitcoin.ECPair.makeRandom({ network: testnet, rng: rng })
const wif = keyPair.toWIF() const wif = keyPair.toWIF()
const { address } = bitcoin.payments.p2pkh({ pubkey: keyPair.publicKey, network: testnet }) const { address } = bitcoin.payments.p2pkh({ pubkey: keyPair.publicKey, network: testnet })
@ -130,6 +132,7 @@ describe('bitcoinjs-lib (addresses)', function () {
}) })
it('can generate a Litecoin address', function () { it('can generate a Litecoin address', function () {
// in production: const keyPair = bitcoin.ECPair.makeRandom({ network: LITECOIN })
const keyPair = bitcoin.ECPair.makeRandom({ network: LITECOIN, rng: rng }) const keyPair = bitcoin.ECPair.makeRandom({ network: LITECOIN, rng: rng })
const wif = keyPair.toWIF() const wif = keyPair.toWIF()
const { address } = bitcoin.payments.p2pkh({ pubkey: keyPair.publicKey, network: LITECOIN }) const { address } = bitcoin.payments.p2pkh({ pubkey: keyPair.publicKey, network: LITECOIN })

Loading…
Cancel
Save