From c03bf5f70563096d4716d18a9a85b2405846e794 Mon Sep 17 00:00:00 2001 From: Aabid Shamji Date: Thu, 22 Sep 2022 06:15:05 -0700 Subject: [PATCH] Remove notes from buildTransaction call for NFT custom-token (#15) --- src/nft/custom-token.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nft/custom-token.ts b/src/nft/custom-token.ts index d6c555c..d344a56 100644 --- a/src/nft/custom-token.ts +++ b/src/nft/custom-token.ts @@ -26,7 +26,7 @@ export class CustomToken extends BaseToken { * @param args - arguments for contract call (addresses should be wrapped with Web3.toChecksumAddress(address) */ async callWriteFunction(abiFunctionName: string, notes: string, ...args): Promise { - const transactionData = await this.buildTransaction(abiFunctionName, ...args, notes); + const transactionData = await this.buildTransaction(abiFunctionName, ...args); return this.submitTransaction(transactionData, notes); }