bufferutils: add Buffer reverse
This commit is contained in:
parent
33955a7fb5
commit
71d4c78b88
4 changed files with 25 additions and 13 deletions
src
|
@ -1,4 +1,5 @@
|
|||
var assert = require('assert')
|
||||
var bufferutils = require('./bufferutils')
|
||||
var crypto = require('crypto')
|
||||
var networks = require('./networks')
|
||||
|
||||
|
@ -123,10 +124,7 @@ Wallet.prototype.__processTx = function(tx, isPending) {
|
|||
|
||||
tx.ins.forEach(function(txIn, i) {
|
||||
// copy and convert to big-endian hex
|
||||
var txinId = new Buffer(txIn.hash)
|
||||
Array.prototype.reverse.call(txinId)
|
||||
txinId = txinId.toString('hex')
|
||||
|
||||
var txinId = bufferutils.reverse(txIn.hash).toString('hex')
|
||||
var output = txinId + ':' + txIn.index
|
||||
|
||||
if (!(output in this.outputs)) return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue