This commit is contained in:
justmoon 2012-02-05 21:20:06 +01:00
parent b19590e339
commit 041477918c

View file

@ -103,7 +103,7 @@
this.chunks[0] == OP_DUP &&
this.chunks[1] == OP_HASH160 &&
this.chunks[3] == OP_EQUALVERIFY &&
this.chunks[4] == map.OP_CHECKSIG) {
this.chunks[4] == OP_CHECKSIG) {
// Transfer to Bitcoin address
return 'Address';
} else if (this.chunks.length == 2 &&
@ -288,7 +288,7 @@
/**
* Exract bitcoin addresses from an output script
* Extract bitcoin addresses from an output script
*/
Script.prototype.extractAddresses = function (addresses)
{