Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
polkadot-sdk
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
parity
Mirrored projects
polkadot-sdk
Commits
e3eb5fda
Commit
e3eb5fda
authored
3 years ago
by
thiolliere
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
fix compilation (#3657)
parent
26dec7a3
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
polkadot/xcm/xcm-builder/src/tests.rs
+6
-6
6 additions, 6 deletions
polkadot/xcm/xcm-builder/src/tests.rs
polkadot/xcm/xcm-builder/tests/scenarios.rs
+0
-1
0 additions, 1 deletion
polkadot/xcm/xcm-builder/tests/scenarios.rs
with
6 additions
and
7 deletions
polkadot/xcm/xcm-builder/src/tests.rs
+
6
−
6
View file @
e3eb5fda
...
...
@@ -391,11 +391,11 @@ fn fungible_multi_asset(location: MultiLocation, amount: u128) -> MultiAsset {
#[test]
fn
weight_trader_tuple_should_work
()
{
pub
const
PARA_1
:
MultiLocation
=
X1
(
Parachain
(
1
));
pub
const
PARA_2
:
MultiLocation
=
X1
(
Parachain
(
2
));
pub
const
PARA_1
:
MultiLocation
=
X1
(
Parachain
(
1
))
.into
()
;
pub
const
PARA_2
:
MultiLocation
=
X1
(
Parachain
(
2
))
.into
()
;
parameter_types!
{
pub
static
HereWeightPrice
:
(
AssetId
,
u128
)
=
(
Here
.into
(),
WEIGHT_PER_SECOND
.into
());
pub
static
HereWeightPrice
:
(
AssetId
,
u128
)
=
(
Here
.into
()
.into
()
,
WEIGHT_PER_SECOND
.into
());
pub
static
PARA1WeightPrice
:
(
AssetId
,
u128
)
=
(
PARA_1
.into
(),
WEIGHT_PER_SECOND
.into
());
}
...
...
@@ -409,11 +409,11 @@ fn weight_trader_tuple_should_work() {
let
mut
traders
=
Traders
::
new
();
// trader one buys weight
assert_eq!
(
traders
.buy_weight
(
5
,
fungible_multi_asset
(
Here
,
10
)
.into
()),
Ok
(
fungible_multi_asset
(
Here
,
5
)
.into
()),
traders
.buy_weight
(
5
,
fungible_multi_asset
(
Here
.into
()
,
10
)
.into
()),
Ok
(
fungible_multi_asset
(
Here
.into
()
,
5
)
.into
()),
);
// trader one refunds
assert_eq!
(
traders
.refund_weight
(
2
),
Some
(
fungible_multi_asset
(
Here
,
2
)));
assert_eq!
(
traders
.refund_weight
(
2
),
Some
(
fungible_multi_asset
(
Here
.into
()
,
2
)));
let
mut
traders
=
Traders
::
new
();
// trader one failed; trader two buys weight
...
...
This diff is collapsed.
Click to expand it.
polkadot/xcm/xcm-builder/tests/scenarios.rs
+
0
−
1
View file @
e3eb5fda
...
...
@@ -38,7 +38,6 @@ fn buy_execution<C>(debt: Weight) -> Order<C> {
weight
:
0
,
debt
,
halt_on_error
:
false
,
orders
:
vec!
[],
instructions
:
vec!
[],
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
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!
Save comment
Cancel
Please
register
or
sign in
to comment