Created
August 16, 2016 18:11
-
-
Save aakilfernandes/eb3b484af25850438720a4208670d775 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Manager.prototype.sendGetBlockHeaders = function(startHeight, maxHeaders, skip, reverse, cb) { | |
var msg = [ | |
startHeight, | |
maxHeaders || 255, | |
skip || 0, | |
reverse ? 1 : 0 | |
]; | |
this.send(OFFSETS.getBlockHeaders, msg, cb); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment