From 950a9d521cef93ac536c965923520c15229bd2e6 Mon Sep 17 00:00:00 2001 From: Braydon Fuller Date: Wed, 11 May 2016 13:33:21 -0400 Subject: [PATCH] docs: make note about sorting of blockhashes --- docs/services/bitcoind.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/services/bitcoind.md b/docs/services/bitcoind.md index 8c49624a..b28d2699 100644 --- a/docs/services/bitcoind.md +++ b/docs/services/bitcoind.md @@ -64,7 +64,7 @@ node.services.bitcoind. **Getting Latest Blocks** ```js -// gives the block hashes within a range of timestamps +// gives the block hashes sorted from low to high within a range of timestamps var high = 1460393372; // Mon Apr 11 2016 12:49:25 GMT-0400 (EDT) var low = 1460306965; // Mon Apr 10 2016 12:49:25 GMT-0400 (EDT) node.services.bitcoind.getBlockHashesByTimestamp(high, low, function(err, blockHashes) {