-
Notifications
You must be signed in to change notification settings - Fork 129
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
Ensure that we are still sending large messages over the bridge #2015
Comments
|
The problem doesn't reproduce when using native execution . It occurs only when running with And more specifically it occurs when decoding the XCM The problem is that The size of |
The size of
The issue didn't reproduce with native execution probably because in the native environment we can allocate enough memory. We need to have a different approach for sending max-size messages. Maybe fix the old one. |
Fixed by #2103 |
At our test deployments we generate max-size messages sometimes. It is generated here:
https://github.com/paritytech/parity-bridges-common/blob/master/relays/bin-substrate/src/cli/encode_message.rs#L73
We need to check, whether they are actually transferred over the bridge after #1983 . Now an XCM message needs to have a special prefix to be sent to the message lane and it seems this large message doesn't have it.
The text was updated successfully, but these errors were encountered: