Replies: 2 comments
-
Try changing this to const contract = await contractFactory.deploy()
const storeFavoriteNumber = await contract.store("3")
const currentFavoriteNumber = await contract.retrieve() to this const contract = await contractFactory.deploy()
await contract.deployTransaction.wait(1);
const transectionResponse = await contract.store("3",{
gasLimit:50000,
})
const transectionRecipt = transectionResponse.wait(1)
const currentFavoriteNumber = await contract.retrieve() |
Beta Was this translation helpful? Give feedback.
0 replies
-
Push to GitHub and reply w/ the link. I will look into it. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
MY CODE :
Beta Was this translation helpful? Give feedback.
All reactions