Browse Source

Connection: Replaced 0000... with util.NULL_HASH

patch-2
olalonde 11 years ago
parent
commit
ab18a46803
  1. 2
      Connection.js

2
Connection.js

@ -187,7 +187,7 @@ Connection.prototype.sendVersion = function () {
Connection.prototype.sendGetBlocks = function (starts, stop, wantHeaders) {
// 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();

Loading…
Cancel
Save