where do I check the value returned by a function in Ethereum wallet (I'm using v. 0.8.3)?
I have set a test net and it works fine. So, after I call a function of my deployed contract , I mine on it and the transaction is executed. I see fron an event that the value returned s correct.
ex.:
function getMyvalue() returns (uint256 valueInWeis) {
print(value); // event is printed correctly
return value;
}
Where can I see the value returned (without having to check the events) ?
