Browse Source

Don't increase address difficulty in CI

Sometimes the Travis builds will time out
master
Luke Childs 6 years ago
parent
commit
fe28af2376
  1. 6
      bench/index.js

6
bench/index.js

@ -6,15 +6,15 @@ const isCI = process.env.CI;
const options = [ const options = [
{ {
addressFormat: 'p2pkh', addressFormat: 'p2pkh',
prefix: isCI ? 'Luke' : 'BTC' prefix: 'BTC'
}, },
{ {
addressFormat: 'p2wpkh-p2sh', addressFormat: 'p2wpkh-p2sh',
prefix: isCI ? 'Luke' : 'BTC' prefix: 'BTC'
}, },
{ {
addressFormat: 'p2wpkh', addressFormat: 'p2wpkh',
prefix: isCI ? 'luke' : 'xyz' prefix: 'xyz'
} }
]; ];

Loading…
Cancel
Save