Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
parity
Mirrored projects
polkadot
Commits
adfc160c
Unverified
Commit
adfc160c
authored
Aug 09, 2021
by
Gavin Wood
Committed by
GitHub
Aug 09, 2021
Browse files
Minor fix to encoding for XCM v1 (#3602)
parent
739b882f
Pipeline
#151919
passed with stages
in 43 minutes and 58 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
xcm/src/v1/multiasset.rs
View file @
adfc160c
...
...
@@ -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
),
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment