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);