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
Currently, in the network we are using a single ID for each message but this ID has two roles: to determine which handler should manage this and what is the message type within this handler.
Problem
Adding a new message in an handler at the middle of the others will change the id of the messages of the others handlers also.
Solution
Use two varint u64 as version one for handler, the other for the inner type.
The text was updated successfully, but these errors were encountered:
Context
Currently, in the network we are using a single ID for each message but this ID has two roles: to determine which handler should manage this and what is the message type within this handler.
Problem
Adding a new message in an handler at the middle of the others will change the id of the messages of the others handlers also.
Solution
Use two varint u64 as version one for handler, the other for the inner type.
The text was updated successfully, but these errors were encountered: