-
Notifications
You must be signed in to change notification settings - Fork 179
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
Failed to decode System_ExtrinsicFailed event #268
Comments
We're seeing a similar issue when using the client. Appears to be because we are on polkadot-v0.9.23, which has the 4 byte error type. |
We encountered the same issue, we fixed it by forking and adding this: threefoldtech@0abbabe |
@ntchjb Can we somehow fix this on this upstream? @DylanVerstraete PR? |
@penumbra23 I believe we fixed it already as part of this PR I verified the code above and it works as expected. Can you pull the latest and try again? |
Ah, okay, it gives me errors for a custom event from our parachain. How can I extend the package with custom events? |
Any progress on custom events? I got the same error. |
Closing this for now, please let us know if you still need help here. |
I was trying to decode events in a block at the number
10834783
and it failed. I found that it is becauseModuleError
type hasError
field withU8
type. However, the metadata specifies that it has type[4]U8
. So, is it safe now to changeModuleError.Error
to the new type[4]U8
?Reproducible Code
Expected Result
Actual Result
The text was updated successfully, but these errors were encountered: