mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-20 14:05:27 +01:00
TST
This commit is contained in:
parent
064caa05fc
commit
0b9d73e2d1
3 changed files with 5 additions and 1 deletions
|
@ -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');
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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));
|
||||
|
|
Loading…
Add table
Reference in a new issue