Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Minor fix to encoding for XCM v1
  • Loading branch information
gavofyork committed Aug 9, 2021
commit c79c9dfddfd80c230578aa499cd72ba37c4364dd
2 changes: 1 addition & 1 deletion xcm/src/v1/multiasset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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),
}

Expand Down