Minor fix to encoding for XCM v1 (#3602)

This commit is contained in:
Gavin Wood
2021-08-09 13:09:20 +02:00
committed by GitHub
parent d5bc262de7
commit 2574398d00
+1 -1
View File
@@ -146,7 +146,7 @@ impl AssetId {
/// Classification of whether an asset is fungible or not, along with a mandatory amount or instance. /// 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)] #[derive(Clone, Eq, PartialEq, Ord, PartialOrd, Debug, Encode, Decode)]
pub enum Fungibility { pub enum Fungibility {
Fungible(u128), Fungible(#[codec(compact)] u128),
NonFungible(AssetInstance), NonFungible(AssetInstance),
} }