Skip to content

Commit

Permalink
Merge pull request #170 from braydonf/coverage
Browse files Browse the repository at this point in the history
Improve test coverage and cleanup.
  • Loading branch information
pnagurny committed Sep 2, 2015
2 parents 28beb92 + d56986f commit fd2790d
Show file tree
Hide file tree
Showing 18 changed files with 923 additions and 409 deletions.
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

0 comments on commit fd2790d

Please sign in to comment.