While creating solidity contract on Browser solidity I am facing this error?
callback contain no result Error: Invalid JSON RPC response: ""
Can someone please help me resolve it?
pragma solidity ^0.4.2;
contract SimpleStorage{
uint storedData;
function set(uint x){
storedData=x;
}
function get() constant returns(uint retVal) {
return storedData;
}
}
contract SimpleStorage{ uint storedData;
} This is the simple contract code. When I click on create in browser solidity, the above error is coming.
– Neha Feb 09 '17 at 06:41