Connection: Replaced 0000... with util.NULL_HASH

This commit is contained in:
olalonde 2014-04-08 23:37:35 +08:00
parent dd6d1a3179
commit ab18a46803
1 changed files with 1 additions and 1 deletions

View File

@ -187,7 +187,7 @@ Connection.prototype.sendVersion = function () {
Connection.prototype.sendGetBlocks = function (starts, stop, wantHeaders) { Connection.prototype.sendGetBlocks = function (starts, stop, wantHeaders) {
// Default value for stop is 0 to get as many blocks as possible (500) // Default value for stop is 0 to get as many blocks as possible (500)
stop = stop || '00000000000000000000000000000000'; stop = stop || util.NULL_HASH;
var put = new Put(); var put = new Put();