-
Notifications
You must be signed in to change notification settings - Fork 516
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
Metropolis: static call #270
Conversation
Paper.tex
Outdated
@@ -826,7 +828,10 @@ \subsection{Execution Environment} | |||
\item $I_v$, the value, in Wei, passed to this account as part of the same procedure as execution; if the execution agent is a transaction, this would be the transaction value. | |||
\item $I_\mathbf{b}$, the byte array that is the machine code to be executed. | |||
\item $I_H$, the block header of the present block. | |||
\item $I_e$, the depth of the present message-call or contract-creation (i.e. the number of {\small CALL}s or {\small CREATE}s being executed at present). | |||
\item $I_e$, the depth of the present message-call or contract-creation | |||
(i.e. the number of {\small CALL}s or {\small CREATE}s being |
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.
spurious new lines.
Paper.tex
Outdated
\item $I_e$, the depth of the present message-call or contract-creation | ||
(i.e. the number of {\small CALL}s or {\small CREATE}s being | ||
executed at present). | ||
\item $I_w$, the permission to write to the state. |
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.
"...to alter make modifications to the state" sounds a little more natural
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.
Minor notes, looks good otherwise.
Addressed the comments. |
I should target |
This PR introduces ethereum/EIPs#214 and fixes #234 as part of the Metropolis changes.
This is a reincarnation of #237.