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
{{ message }}
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Currently genesis.code inside chain spec JSON is encoded as raw Vec<u8> which results in a JSON array containing shitload of numbers, which by default when pretty-printed results in one number per line.
Instead we should encode code as hex (see Bytes wrapper) as it's way more compact, but to maintain backward compatibility we should support both formats when deserializing the chain spec.
CC @JoshOrndorff, I saw that on your seminar and thought that we could fix it :)