Transaction: add isCoinbaseHash static method

This commit is contained in:
Daniel Cousens 2015-02-19 12:04:37 +11:00
parent f13650544b
commit 49345748bb
2 changed files with 7 additions and 7 deletions

View file

@ -85,6 +85,12 @@ Transaction.fromHex = function(hex) {
return Transaction.fromBuffer(new Buffer(hex, 'hex'))
}
Transaction.isCoinbaseHash = function(buffer) {
return Array.prototype.every.call(buffer, function(x) {
return x === 0
})
}
/**
* Create a new txIn.
*