crypto.sha256 should receive a Buffer as an input rather than a string
checked and it works with buffers.
if you wanted to use string implicitly, the function parameter should be renamed from buffer to string.
f4caaf42e7/src/crypto.js (L11)
This commit is contained in:
parent
f4caaf42e7
commit
f46ae7d731
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue