Kordian Kowalski

Results 3 comments of Kordian Kowalski

This happens after first installing the plugin. Restarting the IDE (sometimes twice) resolves this.

Yeah, sorry, here's a minimal repro: ```python from scalecodec.base import RuntimeConfigurationObject, ScaleBytes conf = RuntimeConfigurationObject() b32_0 = conf.create_scale_object("[u8; 0]", data=ScaleBytes(b"")) print(b32_0.decode()) # [] b32_8 = conf.create_scale_object("[u8; 8]", data=ScaleBytes(b"\x01\x02\x03\x04\x05\x06\x07\x08")) print(b32_8.decode()) #...

To be clear I'm on `1.2.11`, `.12` doesn't seem to be addressing this and `v2` is apparently in alpha state so I haven't tested that.