-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Typechain] getContractAt override is not working #6312
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
…type-in-hh-ethers
@@ -27,7 +27,7 @@ describe("Example EDR based test", () => { | |||
const connection = await hre.network.connect(); | |||
|
|||
const Revert = await connection.ethers.getContractFactory("Revert"); | |||
const revert = await Revert.deploy([]); | |||
const revert = await Revert.deploy(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I also applied this fix in the example-project
because passing an array to this function is incorrect.
See issue description here