You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
eth_getStorageAt method always returns 0x0000000000000000000000000000000000000000000000000000000000000000 in versions 0.6.2, 0.6.3, 0.7.3-beta3, 0.8.0 and 0.8.1. But it works fine in version 0.6.1
Your environment
OS and version. macOs Ventura 13.3.1
The version of the Polygon Edge. 0.6.2, 0.6.3, 0.7.3-beta3, 0.8.0, 0.8.1
The branch that causes this issue. v0.6.2, v0.6.3, v0.7.3-beta3, v0.8.0, v0.8.1
Locally or Cloud hosted (which provider). Local and also Cloud (Linux with polygon-edge v0.6.3 on AWS)
Please confirm if the validators are running under containerized environment (K8s, Docker, etc.). Docker
Steps to reproduce
Tell us how to reproduce this issue.
deploy a smart contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;
contract Storage {
uint256 public value;
constructor() {
value = 42;
}
function setValue(uint256 _newValue) public {
value = _newValue;
}
}
Use the eth_getStorageAt method (with the correct contract address)
eth_getStorageAt returns 0
Description
eth_getStorageAt
method always returns0x0000000000000000000000000000000000000000000000000000000000000000
in versions0.6.2
,0.6.3
,0.7.3-beta3
,0.8.0
and0.8.1
. But it works fine in version0.6.1
Your environment
Steps to reproduce
eth_getStorageAt
method (with the correct contract address)Expected behavior
It should return:
It returns:
Thanks!
The text was updated successfully, but these errors were encountered: