Init commit #1087
Annotations
3 errors and 1 warning
mismatched types:
pallets/astar-xcm-benchmarks/src/fungible/benchmarking.rs#L106
error[E0308]: mismatched types
--> pallets/astar-xcm-benchmarks/src/fungible/benchmarking.rs:106:13
|
103 | <AssetTransactorOf<T>>::deposit_asset(
| ------------------------------------- arguments to this function are incorrect
...
106 | / &XcmContext {
107 | | origin: Some(sender_location.clone()),
108 | | message_id: [0; 32],
109 | | topic: None,
110 | | },
| |_____________^ expected `Option<&XcmContext>`, found `&XcmContext`
|
= note: expected enum `std::option::Option<&staging_xcm::v3::XcmContext>`
found reference `&staging_xcm::v3::XcmContext`
note: associated function defined here
--> /home/astar-admin/.cargo/git/checkouts/polkadot-sdk-cff69157b985ed76/401f8a3/polkadot/xcm/xcm-executor/src/traits/transact_asset.rs:90:5
|
90 | fn deposit_asset(
| ^^^^^^^^^^^^^
help: try wrapping the expression in `Some`
|
106 ~ Some(&XcmContext {
107 | origin: Some(sender_location.clone()),
108 | message_id: [0; 32],
109 | topic: None,
110 ~ }),
|
|
mismatched types:
pallets/astar-xcm-benchmarks/src/fungible/benchmarking.rs#L64
error[E0308]: mismatched types
--> pallets/astar-xcm-benchmarks/src/fungible/benchmarking.rs:64:13
|
61 | <AssetTransactorOf<T>>::deposit_asset(
| ------------------------------------- arguments to this function are incorrect
...
64 | / &XcmContext {
65 | | origin: Some(sender_location.clone()),
66 | | message_id: [0; 32],
67 | | topic: None,
68 | | },
| |_____________^ expected `Option<&XcmContext>`, found `&XcmContext`
|
= note: expected enum `std::option::Option<&staging_xcm::v3::XcmContext>`
found reference `&staging_xcm::v3::XcmContext`
note: associated function defined here
--> /home/astar-admin/.cargo/git/checkouts/polkadot-sdk-cff69157b985ed76/401f8a3/polkadot/xcm/xcm-executor/src/traits/transact_asset.rs:90:5
|
90 | fn deposit_asset(
| ^^^^^^^^^^^^^
help: try wrapping the expression in `Some`
|
64 ~ Some(&XcmContext {
65 | origin: Some(sender_location.clone()),
66 | message_id: [0; 32],
67 | topic: None,
68 ~ }),
|
|
test-runtimes
Process completed with exit code 2.
|
test-runtimes
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|