We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
fixed by paritytech/polkadot-sdk#6393 commit
Sorry, something went wrong.
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: