Skip to content

Commit

Permalink
zk fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ly0va committed May 20, 2021
1 parent 50828fd commit d277c36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sdk/zksync.js/src/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ export class Wallet {
to: transfer.to,
token: transfer.token.id,
amount: 1,
fee: 0,
fee: 0
};
const txFee = {
to: this.address(),
Expand Down Expand Up @@ -809,7 +809,7 @@ export class Wallet {
}): Promise<Transaction> {
withdrawNFT.nonce = withdrawNFT.nonce != null ? await this.getNonce(withdrawNFT.nonce) : await this.getNonce();
if (!isNFT(withdrawNFT.token)) {
throw new Error("This token ID does not correspond to an NFT");
throw new Error('This token ID does not correspond to an NFT');
}

if (withdrawNFT.fee == null) {
Expand Down

0 comments on commit d277c36

Please sign in to comment.