From 8f3a99b1be81107ceb8a0c996776265daa80c03a Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 30 Aug 2016 17:51:09 +1200 Subject: [PATCH] Remove versionGuard error while we are not versioning --- index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 0a03a9b..78c5753 100644 --- a/index.js +++ b/index.js @@ -9,7 +9,8 @@ bitcore.versionGuard = function(version) { var message = 'More than one instance of bitcore-lib-zcash found. ' + 'Please make sure to require bitcore-lib-zcash and check that submodules do' + ' not also include their own bitcore-lib-zcash dependency.'; - throw new Error(message); + // TODO: put this back if we start versioning again + //throw new Error(message); } }; bitcore.versionGuard(global._bitcore);