Skip to content
This repository has been archived by the owner on Oct 4, 2024. It is now read-only.

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
judith-Near committed Jun 27, 2022
1 parent 5d5ef5e commit 88fb668
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const confirmDelete = function () {
return askYesNoQuestion(
chalk`{bold.white This method will delete your account. Beneficiary account must exist in order to transfer all Near tokens. Make sure to send all fungible tokens or NFTs that you own to the beneficiary account prior to deleting, as this method will only transfer NEAR tokens. Do you want to proceed? {bold.green (y/n) }}`,
false);
}
};

exports.deploy = async function (options) {
await checkCredentials(options.accountId, options.networkId, options.keyStore);
Expand Down Expand Up @@ -225,7 +225,7 @@ exports.deleteAccount = async function (options) {
const beneficiaryAccount = await near.account(options.beneficiaryId);
// beneficiary account does not exist if there are no access keys
if (!(await beneficiaryAccount.getAccessKeys()).length) {
console.log("Beneficiary account does not exist, please create the account to transfer Near tokens.");
console.log('Beneficiary account does not exist, please create the account to transfer Near tokens.');
return;
}

Expand Down

0 comments on commit 88fb668

Please sign in to comment.