-
Notifications
You must be signed in to change notification settings - Fork 696
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
serde for RuntimeString is broken #4001
Comments
Maybe it would work to give the variants explicit indices? (yes could be that the whole type is a bit useless though cc @michalkucharczyk) |
This comes from a time when we did not had |
Does it mean you have RuntimeString field somewhere in your RuntimeGenesisConfig? We could use serde variant attributes to deserialize Owned as String in nostd. |
I think the better solution is just to change |
Yes
The only reason for |
I mean this is the reason why this exists, because I know the guy that added the |
Recommended course of action to fix this? |
If moving it to |
My only concern is that it'll be a breaking change for JSON serialization, hence the question. If someone stored serialized |
Can we even differentiate between bytes or string encoded? |
I think the answer very much depends on the serialization format. We can definitely tell that in JSON and probably some other self-describing formats, but I don't think it is universally true. |
Just thought about this again. Actually if they stored it as SCALE encoded, the encoding is the same and decoding should not fail between |
I went a bit further and removed the data structure as redundant in #5693 |
…>` or `String` depending on use case (#5693) # Description As described in #4001 `RuntimeVersion` was not encoded consistently using serde. Turned out it was a remnant of old times and no longer actually needed. As such I removed it completely in this PR and replaced with `Cow<'static, str>` for spec/impl names and `String` for error cases. Fixes #4001. ## Integration For downstream projects the upgrade will primarily consist of following two changes: ```diff #[sp_version::runtime_version] pub const VERSION: RuntimeVersion = RuntimeVersion { - spec_name: create_runtime_str!("statemine"), - impl_name: create_runtime_str!("statemine"), + spec_name: alloc::borrow::Cow::Borrowed("statemine"), + impl_name: alloc::borrow::Cow::Borrowed("statemine"), ``` ```diff fn dispatch_benchmark( config: frame_benchmarking::BenchmarkConfig - ) -> Result<Vec<frame_benchmarking::BenchmarkBatch>, sp_runtime::RuntimeString> { + ) -> Result<Vec<frame_benchmarking::BenchmarkBatch>, alloc::string::String> { ``` SCALE encoding/decoding remains the same as before, but serde encoding in runtime has changed from bytes to string (it was like this in `std` environment already), which most projects shouldn't have issues with. I consider the impact of serde encoding here low due to the type only being used in runtime version struct and mostly limited to runtime internals, where serde encoding/decoding of this data structure is quite unlikely (though we did hit exactly this edge-case ourselves :sweat_smile:). ## Review Notes Most of the changes are trivial and mechanical, the only non-trivial change is in `substrate/primitives/version/proc-macro/src/decl_runtime_version.rs` where macro call expectation in `sp_version::runtime_version` implementation was replaced with function call expectation. # Checklist * [x] My PR includes a detailed description as outlined in the "Description" and its two subsections above. * [ ] My PR follows the [labeling requirements]( https://github.com/paritytech/polkadot-sdk/blob/master/docs/contributor/CONTRIBUTING.md#Process ) of this project (at minimum one label for `T` required) * External contributors: ask maintainers to put the right label on your PR. * [ ] I have made corresponding changes to the documentation (if applicable) --------- Co-authored-by: GitHub Action <[email protected]> Co-authored-by: Guillaume Thiolliere <[email protected]> Co-authored-by: Bastian Köcher <[email protected]>
Is there an existing issue?
Experiencing problems? Have you tried our Stack Exchange first?
Description of bug
I just had a strange issue when I tried to serialize
RuntimeString
on the client intoJSON
and then deserialize in the runtime. Turned out serde implementation forRuntimeString
is broken because between client and runtime owned value will beString
orVec<u8>
and as the result one end will serialize a String and another will try to deserialize it as a vector of bytes, resulting in confusing errors.I have no idea what problem
RuntimeString
is even solving, looks like what you want is justCow<'static, str>
unless I miss something.I hit this due to
sp_genesis_builder::GenesisBuilder
trying to decode JSON.Steps to reproduce
No response
The text was updated successfully, but these errors were encountered: