-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
feat(anvil): reset to non fork #7500
base: master
Are you sure you want to change the base?
Conversation
I think we should add the logic for this into |
will this enabled |
this should already be possible if the input is set correctly: https://hardhat.org/hardhat-network/docs/reference#hardhat_reset |
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.
conceptually this is correct, but it's a bit more complex than this.
we also want some sanity tests for this
that reset and ensure the block number is reset to genesis for example
// Clear env | ||
{ | ||
let mut env = self.env.write(); | ||
env.clear(); | ||
|
||
// Set default anvil chain_id | ||
env.cfg.chain_id = DEV_CHAIN_ID; | ||
|
||
// Reset time | ||
self.time.reset(env.block.timestamp.to::<u64>()); | ||
} |
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.
this isn't entirely accurate, what we need to consider here is that the node can be in two modes here, forked or mem only.
if mem only we need to reset to the genesis block
if in forked, we need to entirely reinitialize the node block env like this
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.
@mattsse So if the node is in mem mode, we just clear the env like env.clear()
?
Motivation
Closes: #7472
Solution
Implement a new function to reset to a non-fork from a fork.