Skip to content
Snippets Groups Projects
Commit 2574398d authored by Gavin Wood's avatar Gavin Wood Committed by GitHub
Browse files

Minor fix to encoding for XCM v1 (#3602)

parent d5bc262d
No related merge requests found
......@@ -146,7 +146,7 @@ impl AssetId {
/// Classification of whether an asset is fungible or not, along with a mandatory amount or instance.
#[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Debug, Encode, Decode)]
pub enum Fungibility {
Fungible(u128),
Fungible(#[codec(compact)] u128),
NonFungible(AssetInstance),
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment