integration: use Script.getHash

This commit is contained in:
Daniel Cousens 2014-05-28 12:13:41 +10:00
parent c9f9d86cb4
commit 326cda63c0

View file

@ -30,8 +30,7 @@ describe('Bitcoin-js', function() {
var pubKeys = privKeys.map(function(eck) { return eck.pub })
var redeemScript = Script.createMultisigScriptPubKey(2, pubKeys)
var hash160 = crypto.hash160(new Buffer(redeemScript.buffer))
var multisigAddress = new Address(hash160, networks.testnet.scriptHash).toString()
var multisigAddress = new Address(redeemScript.getHash(), networks.testnet.scriptHash).toString()
// Send some testnet coins to the multisig address to ensure it has some unspents for later
helloblock.faucet.withdraw(multisigAddress, coldAmount, function(err) {