Skip to content

Commit

Permalink
Don't increase address difficulty in CI
Browse files Browse the repository at this point in the history
Sometimes the Travis builds will time out
  • Loading branch information
lukechilds committed May 9, 2019
1 parent 9efc86b commit fe28af2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bench/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ const isCI = process.env.CI;
const options = [
{
addressFormat: 'p2pkh',
prefix: isCI ? 'Luke' : 'BTC'
prefix: 'BTC'
},
{
addressFormat: 'p2wpkh-p2sh',
prefix: isCI ? 'Luke' : 'BTC'
prefix: 'BTC'
},
{
addressFormat: 'p2wpkh',
prefix: isCI ? 'luke' : 'xyz'
prefix: 'xyz'
}
];

Expand Down

0 comments on commit fe28af2

Please sign in to comment.