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
The variant field of an enum is currently encoded as u64 which is unnecessarily large and can be reduced to u8 or u16, depending on the amount of variants we want to allow.
The text was updated successfully, but these errors were encountered:
The variant field of an enum is currently encoded as
u64
which is unnecessarily large and can be reduced tou8
oru16
, depending on the amount of variants we want to allow.The text was updated successfully, but these errors were encountered: