Open athei opened 1 week ago
I modified the example 1_Storage.sol to emit a simple log:
1_Storage.sol
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:
store_value
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.
fixed by https://github.com/paritytech/polkadot-sdk/pull/6393 commit
I modified the example
1_Storage.sol
to emit a simple log: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.