This commit is contained in:
Overtorment 2018-05-20 11:05:50 +01:00
parent 064caa05fc
commit 0b9d73e2d1
3 changed files with 5 additions and 1 deletions

View file

@ -202,6 +202,10 @@ it('bip38 decodes', async () => {
});
it('bip38 decodes slow', async () => {
if (process.env.USER === 'burn') {
// run only on circleCI
return;
}
jasmine.DEFAULT_TIMEOUT_INTERVAL = 60000;
const bip38 = require('bip38');
const wif = require('wif');

View file

@ -134,7 +134,6 @@ export default class Selftest extends Component {
fee = 0.0001;
try {
txHex = l.createTx(utxos, amount, fee, toAddr);
console.log(txHex);
} catch (e) {
errorMessage += e.message + '; ';
isOk = false;

View file

@ -2,4 +2,5 @@ let fs = require('fs');
var appjson = require('./app.json');
appjson.expo.ios.buildNumber++;
appjson.expo.ios.buildNumber = appjson.expo.ios.buildNumber + ''; // casting to string
console.log(appjson.expo.version, '(', appjson.expo.ios.buildNumber, ')');
fs.writeFileSync('./app.json', JSON.stringify(appjson, null, 2));