In etherum wallet I am getting an error of no key for given address or file during deployment of the contract. What will be the reason for the same?
contract User{
string public userName;
function User(string _name){
userName = _name;
}
}
