We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The Yellow Paper contains the following logic under contract creation:
DEAD(s, a) is defined as:
DEAD(s, a)
Notably, the nonce must be 0.
nonce
In the first figure, a represents the address of the created account. However:
a
The nonce of the created account is initially set to 1.
TLDR: Am I correct in saying that the second case in Figure 1 cannot occur, and hence is redundant?
The text was updated successfully, but these errors were encountered:
The only way to decrease nonce on the EVM is through selfdestruct, and that will happen after \Lambda has finished executing....
selfdestruct
\Lambda
Sorry, something went wrong.
Yeah, I think that the second condition in (102) is redundant.
No branches or pull requests
The Yellow Paper contains the following logic under contract creation:
DEAD(s, a)
is defined as:Notably, the
nonce
must be 0.In the first figure,
a
represents the address of the created account. However:The nonce of the created account is initially set to 1.
TLDR: Am I correct in saying that the second case in Figure 1 cannot occur, and hence is redundant?
The text was updated successfully, but these errors were encountered: