Skip to content

Commit

Permalink
increase regtest timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
snogcel committed Jan 2, 2017
1 parent 8fcc283 commit 8814dc9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion regtest/bitcoind.js
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ var destKey = bitcore.PrivateKey();
describe('Bitcoind Functionality', function() {

before(function(done) {
this.timeout(60000);
this.timeout(200000);

// Add the regtest network
bitcore.Networks.enableRegtest();
Expand Down
2 changes: 1 addition & 1 deletion regtest/cluster.js
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ describe('Bitcoin Cluster', function() {

before(function(done) {
log.info('Starting 3 dashd daemons');
this.timeout(60000);
this.timeout(200000);
async.each(nodesConf, function(nodeConf, next) {
var opts = [
'--regtest',
Expand Down
2 changes: 1 addition & 1 deletion regtest/node.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ describe('Node Functionality', function() {
var address;
var unspentOutput;
before(function(done) {
this.timeout(100000);
this.timeout(200000);
address = testKey.toAddress(regtest).toString();
var startHeight = node.services.bitcoind.height;
node.services.bitcoind.on('tip', function(height) {
Expand Down
2 changes: 1 addition & 1 deletion regtest/p2p.js
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ var blocks;
describe('P2P Functionality', function() {

before(function(done) {
this.timeout(100000);
this.timeout(200000);

// enable regtest
bitcore.Networks.enableRegtest();
Expand Down

0 comments on commit 8814dc9

Please sign in to comment.