Skip to content

Commit

Permalink
fix: BT url
Browse files Browse the repository at this point in the history
  • Loading branch information
limpbrains committed Jun 15, 2024
1 parent bb01304 commit 77cda12
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .env.test.template
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ BACKUPS_SERVER_PUBKEY=0319c4ff23820afec0c79ce3a42031d7fef1dff78b7bdd69b5560684f3
WEB_RELAY=https://webrelay.slashtags.to

# Blocktank
BLOCKTANK_HOST=https://api1.blocktank.to/api
BLOCKTANK_HOST=https://api.stag.blocktank.to

# Network
ELECTRUM_BITCOIN_HOST=35.187.18.233
Expand Down
4 changes: 2 additions & 2 deletions e2e/backup.e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ d('Backup', () => {
await element(by.id('ActivitySavings')).tap();
await element(by.id('Activity-1')).tap();
await element(by.id('ActivityTag')).tap();
await element(by.id('TagInput')).replaceText(tag);
await element(by.id('TagInput')).typeText(tag);
await element(by.id('TagInput')).tapReturnKey();
await sleep(200); // animation
await element(by.id('NavigationClose')).atIndex(0).tap();
Expand Down Expand Up @@ -136,7 +136,7 @@ d('Backup', () => {
await element(by.id('SkipIntro')).tap();
await element(by.id('RestoreWallet')).tap();
await element(by.id('MultipleDevices-button')).tap();
await element(by.id('Word-0')).replaceText(seed);
await element(by.id('Word-0')).typeText(seed);
await element(by.id('WordIndex-4')).swipe('up');
await element(by.id('RestoreButton')).tap();

Expand Down

0 comments on commit 77cda12

Please sign in to comment.