Skip to content

Improve test coverage and cleanup. #170

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

Merged
merged 9 commits into from
Sep 2, 2015
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
31 changes: 0 additions & 31 deletions example/index.js

This file was deleted.

6 changes: 0 additions & 6 deletions integration/livenet-block-data.json

This file was deleted.

26 changes: 0 additions & 26 deletions integration/livenet-spents.json

This file was deleted.

4 changes: 0 additions & 4 deletions integration/livenet-tx-data.json

This file was deleted.

188 changes: 0 additions & 188 deletions integration/livenet.js

This file was deleted.

6 changes: 0 additions & 6 deletions integration/testnet-block-data.json

This file was deleted.

5 changes: 0 additions & 5 deletions integration/testnet-tx-data.json

This file was deleted.

2 changes: 1 addition & 1 deletion lib/scaffold/default-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function getDefaultConfig() {
config: {
datadir: process.env.BITCORENODE_DIR || path.resolve(process.env.HOME, '.bitcoin'),
network: process.env.BITCORENODE_NETWORK || 'livenet',
port: process.env.BITCORENODE_PORT || 3001,
port: Number(process.env.BITCORENODE_PORT) || 3001,
services: ['bitcoind', 'db', 'address', 'web']
}
};
Expand Down
Loading