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

Commit

Permalink
Fixed broken variable in template string (ethers-io#1624, ethers-io#1626
Browse files Browse the repository at this point in the history
).
  • Loading branch information
ricmoo authored and pull[bot] committed Jun 4, 2021
1 parent b17594a commit 9729201
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/contracts/src.ts/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -693,7 +693,7 @@ export class BaseContract {
// Check that the signature is unique; if not the ABI generation has
// not been cleaned or may be incorrectly generated
if (uniqueSignatures[signature]) {
logger.warn(`Duplicate ABI entry for ${ JSON.stringify(name) }`);
logger.warn(`Duplicate ABI entry for ${ JSON.stringify(signature) }`);
return;
}
uniqueSignatures[signature] = true;
Expand Down

0 comments on commit 9729201

Please sign in to comment.