Browse Source

Merge pull request #970 from kaminskypavel/patch-1

crypto.sha256 should receive a Buffer as an input rather than a string
hk-custom-address
Daniel Cousens 7 years ago
committed by GitHub
parent
commit
e0f24fdd46
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      test/integration/addresses.js

2
test/integration/addresses.js

@ -17,7 +17,7 @@ describe('bitcoinjs-lib (addresses)', function () {
})
it('can generate an address from a SHA256 hash', function () {
var hash = bitcoin.crypto.sha256('correct horse battery staple')
var hash = bitcoin.crypto.sha256(Buffer.from('correct horse battery staple'))
var d = bigi.fromBuffer(hash)
var keyPair = new bitcoin.ECPair(d)

Loading…
Cancel
Save