From d751ed8a5767c7c3ccc3dfec86de8508962f50b8 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Wed, 11 Jun 2014 18:15:17 -0300 Subject: [PATCH] adds the BIT constant --- util/util.js | 1 + 1 file changed, 1 insertion(+) diff --git a/util/util.js b/util/util.js index 6972890e35e..e48672791a2 100644 --- a/util/util.js +++ b/util/util.js @@ -493,5 +493,6 @@ exports.INT64_MAX = INT64_MAX; // How much of Bitcoin's internal integer coin representation // makes 1 BTC exports.COIN = 100000000; +exports.BIT = 100; var MAX_TARGET = exports.MAX_TARGET = new Buffer('00000000FFFF0000000000000000000000000000000000000000000000000000', 'hex');