Remove versionGuard error while we are not versioning

This commit is contained in:
Jack Grigg 2016-08-30 17:51:09 +12:00
parent d7d6682eab
commit 8f3a99b1be
1 changed files with 2 additions and 1 deletions

View File

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