Skip to content

Commit

Permalink
tweak for legacy.fairdrop.xyz
Browse files Browse the repository at this point in the history
  • Loading branch information
significance committed Oct 2, 2019
1 parent d5a7528 commit 9e6b6b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/User.js
Original file line number Diff line number Diff line change
Expand Up @@ -208,13 +208,13 @@ async getAddressOf(subdomain) {
getBackup(){
return {
data: JSON.stringify(this.wallet),
name: `fairdrop-wallet-${this.subdomain}-backup.json`
name: `fds-wallet-${this.subdomain}-backup.json`
}
}
/** get wallet file
* @returns {any} wallet file */
getBackupFile(){
return new File([JSON.stringify(this.wallet)], `fairdrop-wallet-${this.subdomain}-backup.json`, {type: 'application/json'});
return new File([JSON.stringify(this.wallet)], `fds-wallet-${this.subdomain}-backup.json`, {type: 'application/json'});
}
/** Save wallet backup
* @returns {any} result of save operation */
Expand Down

0 comments on commit 9e6b6b6

Please sign in to comment.