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
.value
evm.stack.pop()
In function sload(evm) of content/07a_opcodes/10_storage.ipynb
sload(evm)
content/07a_opcodes/10_storage.ipynb
def sload(evm): key = evm.stack.pop().value warm, value = evm.storage.load(key) evm.stack.push(value) evm.gas_dec(2100) # 100 if warm evm.pc += 1
key = evm.stack.pop().value should be key = evm.stack.pop()
key = evm.stack.pop().value
key = evm.stack.pop()
same problem in content/07a_opcodes/17_transient file in tload function.
content/07a_opcodes/17_transient
tload
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In function
sload(evm)
ofcontent/07a_opcodes/10_storage.ipynb
key = evm.stack.pop().value
should bekey = evm.stack.pop()
same problem in
content/07a_opcodes/17_transient
file intload
function.The text was updated successfully, but these errors were encountered: