10000 Minor fix to encoding for XCM v1 by gavofyork · Pull Request #3602 · paritytech/polkadot · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Minor fix to encoding for XCM v1 #3602

Merged
merged 1 commit into from
Aug 9, 2021
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
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
0