Closed
Description
I modified the example 1_Storage.sol
to emit a simple log:
event LogMessage(string message);
function store_value(uint256 num) public {
emit LogMessage("called store_value");
number = num;
}
When I run submit the store_value
as transaction from REMIX the log doesn't show up:
I verified that the event was actually emitted by looking up the extrinsic in SubScan:
I also dry-ran it and made sure that the event is there:
I didn't debug whether the RPC proxy doesn't return the log or whether REMIX is the cuprit.
Metadata
Metadata
Assignees
Labels
No labels