You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a function which, depending on the code path, emits 0 or more events, possibly of different types. In my rpc call, I am not interested in these events, I just want to make sure that the call was successful. However, if one of the events fires, I get a TypeSizeUnavailable error. Is there a way to prevent this error from occurring without refactoring my parachain code?
The text was updated successfully, but these errors were encountered:
This could be resolved via #227 by correctly registering all types for your runtime. Alternatively we could add an alternative to submit_and_watch_extrinsic which does not attempt to decode the events.
I have a function which, depending on the code path, emits 0 or more events, possibly of different types. In my rpc call, I am not interested in these events, I just want to make sure that the call was successful. However, if one of the events fires, I get a TypeSizeUnavailable error. Is there a way to prevent this error from occurring without refactoring my parachain code?
The text was updated successfully, but these errors were encountered: