Skip to content
New issue

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

Logs emitted by Solidity don't show up in REMIX #4

Open
athei opened this issue Nov 7, 2024 · 1 comment
Open

Logs emitted by Solidity don't show up in REMIX #4

athei opened this issue Nov 7, 2024 · 1 comment

Comments

@athei
Copy link
Member

athei commented Nov 7, 2024

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:
Screenshot 2024-11-07 at 01 33 17

I verified that the event was actually emitted by looking up the extrinsic in SubScan:
Screenshot 2024-11-07 at 01 34 47

I also dry-ran it and made sure that the event is there:
Screenshot 2024-11-07 at 01 36 46

I didn't debug whether the RPC proxy doesn't return the log or whether REMIX is the cuprit.

@pgherveou
Copy link

fixed by paritytech/polkadot-sdk#6393 commit

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants