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
Tip
From
Into
u64
#[derive( Clone, Copy, Debug, Default, Deserialize, Eq, Hash, Ord, PartialEq, PartialOrd, Serialize, derive_more::Deref, )] #[cfg_attr( feature = "parity-scale-codec", derive(parity_scale_codec::Encode, parity_scale_codec::Decode) )] #[cfg_attr(feature = "scale-info", derive(scale_info::TypeInfo))] #[serde(from = "PrefixedBytesAsHex<8_usize>", into = "PrefixedBytesAsHex<8_usize>")] pub struct Tip(pub u64);
As mention in #197 don't use deref. Use From/Into instead
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As mention in #197 don't use deref. Use
From
/Into
insteadThe text was updated successfully, but these errors were encountered: