Merge pull request #970 from kaminskypavel/patch-1

crypto.sha256 should receive a Buffer as an input rather than a string
This commit is contained in:
Daniel Cousens 2018-01-01 09:59:45 +11:00 committed by GitHub
commit e0f24fdd46
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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)