We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This builds:
pub enum Example { Item { #[codec(compact)] x: u32 }, }
Yet this doesn't:
pub enum Example { Item ( #[codec(compact)] u32 ), }
The text was updated successfully, but these errors were encountered:
It should work already
parity-scale-codec/tests/mod.rs
Lines 100 to 107 in f0341da
I tried the example you provided and it worked to me.
Sorry, something went wrong.
tests cover the case and tests that it is indeed compact. thus I think we can close it
No branches or pull requests
This builds:
Yet this doesn't:
The text was updated successfully, but these errors were encountered: