Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Repo moves to bitcoinz-dev-tool #6

Merged
merged 3 commits into from
Jan 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ Bitcoin is a powerful new peer-to-peer platform for the next generation of finan
## Get Started

```
npm install bitcore-lib
npm install bitcore-lib-btcz
```

```
bower install bitcore-lib
bower install bitcore-lib-btcz
```

## Documentation
Expand Down Expand Up @@ -75,8 +75,8 @@ To verify signatures, use the following PGP keys:
## Development & Tests

```sh
git clone https://github.com/bitpay/bitcore-lib
cd bitcore-lib
git clone https://github.com/bitcoinz-dev-tools/bitcore-lib-btcz
cd bitcore-lib-btcz
npm install
```

Expand All @@ -94,3 +94,4 @@ or create a test coverage report (you can open `coverage/lcov-report/index.html`
Code released under [the MIT license](https://github.com/bitpay/bitcore-lib/blob/master/LICENSE).

Copyright 2013-2017 BitPay, Inc. Bitcore is a trademark maintained by BitPay, Inc.
Copyright 2017-2021 The BitcoinZ Community
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var bitcore = module.exports;
// module information
bitcore.version = 'v' + require('./package.json').version;
bitcore.versionGuard = function(version) {
if (version !== undefined) {
if (version !== undefined) { return; // TODO: Check why more than one instance
var message = 'More than one instance of bitcore-lib-btcz found. ' +
'Please make sure to require bitcore-lib-btcz and check that submodules do' +
' not also include their own bitcore-lib-btcz dependency.';
Expand Down