Fixed issue with incompatible buffer.toJSON for node 0.10 and 0.12

This commit is contained in:
Braydon Fuller 2015-06-26 16:38:42 -04:00
parent a3dee0695d
commit 8e6b0147b9
1 changed files with 3 additions and 2 deletions

View File

@ -91,8 +91,9 @@ BufferReader.prototype.readUInt64BEBN = function() {
};
BufferReader.prototype.readUInt64LEBN = function() {
var data = this.buf.slice(this.pos, this.pos + 8).toJSON().data;
var bn = new BN(data, 10, 'le');
var buf = this.buf.slice(this.pos, this.pos + 8);
var array = Array.prototype.slice.call(buf, 0);
var bn = new BN(array, 10, 'le');
this.pos = this.pos + 8;
return bn;
};