Skip to content

Init commit

Init commit #1087

GitHub Actions / clippy failed Mar 26, 2024 in 0s

clippy

2 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 2
Warning 0
Note 0
Help 0

Versions

  • rustc 1.73.0 (cc66ad468 2023-10-03)
  • cargo 1.73.0 (9c4383fb5 2023-08-26)
  • clippy 0.1.73 (cc66ad4 2023-10-03)

Annotations

Check failure on line 110 in pallets/astar-xcm-benchmarks/src/fungible/benchmarking.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

mismatched types

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 ~             }),
    |

Check failure on line 68 in pallets/astar-xcm-benchmarks/src/fungible/benchmarking.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

mismatched types

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 ~             }),
   |