Skip to content

Commit

Permalink
Fixed broken variable in template string (#1624, #1626).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed May 31, 2021
1 parent 8681cd5 commit 630656e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/contracts/src.ts/index.ts
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 630656e

Please sign in to comment.