smartcontractkit / hardhat-starter-kit

A repo for boilerplate code for testing, deploying, and shipping chainlink solidity code.
MIT License
1.21k stars 493 forks source link

fix: incorrect async call to toString method #174

Open IgorShadurin opened 11 months ago

IgorShadurin commented 11 months ago

This PR addresses an issue where the toString method was erroneously called as an async function. Since toString is a synchronous operation, this commit corrects the call to ensure it is executed in the proper synchronous context, improving code reliability and maintainability.