Skip to content

feat: pallet proxy #182

feat: pallet proxy

feat: pallet proxy #182

Triggered via pull request April 8, 2024 21:27
Status Failure
Total duration 42m 13s
Artifacts

build.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

12 errors and 7 warnings
no variant named `Multisig` found for enum `RuntimeCall`: runtime/testnet/src/proxy_config.rs#L134
error[E0599]: no variant named `Multisig` found for enum `RuntimeCall` --> runtime/testnet/src/proxy_config.rs:134:21 | 134 | | RuntimeCall::Multisig { .. } | ^^^^^^^^ variant not found in `RuntimeCall` | ::: runtime/testnet/src/lib.rs:564:1 | 564 | / construct_runtime!( 565 | | pub enum Runtime { 566 | | // System support stuff. 567 | | System: frame_system = 0, ... | 608 | | } 609 | | ); | |_- variant `Multisig` not found here
no variant named `Utility` found for enum `RuntimeCall`: runtime/testnet/src/proxy_config.rs#L133
error[E0599]: no variant named `Utility` found for enum `RuntimeCall` --> runtime/testnet/src/proxy_config.rs:133:21 | 133 | | RuntimeCall::Utility { .. } | ^^^^^^^ variant not found in `RuntimeCall` | ::: runtime/testnet/src/lib.rs:564:1 | 564 | / construct_runtime!( 565 | | pub enum Runtime { 566 | | // System support stuff. 567 | | System: frame_system = 0, ... | 608 | | } 609 | | ); | |_- variant `Utility` not found here
no variant named `Utility` found for enum `RuntimeCall`: runtime/testnet/src/proxy_config.rs#L127
error[E0599]: no variant named `Utility` found for enum `RuntimeCall` --> runtime/testnet/src/proxy_config.rs:127:21 | 127 | | RuntimeCall::Utility { .. } | ^^^^^^^ variant not found in `RuntimeCall` | ::: runtime/testnet/src/lib.rs:564:1 | 564 | / construct_runtime!( 565 | | pub enum Runtime { 566 | | // System support stuff. 567 | | System: frame_system = 0, ... | 608 | | } 609 | | ); | |_- variant `Utility` not found here
no variant named `Multisig` found for enum `RuntimeCall`: runtime/testnet/src/proxy_config.rs#L103
error[E0599]: no variant named `Multisig` found for enum `RuntimeCall` --> runtime/testnet/src/proxy_config.rs:103:21 | 103 | | RuntimeCall::Multisig { .. } | ^^^^^^^^ variant not found in `RuntimeCall` | ::: runtime/testnet/src/lib.rs:564:1 | 564 | / construct_runtime!( 565 | | pub enum Runtime { 566 | | // System support stuff. 567 | | System: frame_system = 0, ... | 608 | | } 609 | | ); | |_- variant `Multisig` not found here
no variant named `Utility` found for enum `RuntimeCall`: runtime/testnet/src/proxy_config.rs#L102
error[E0599]: no variant named `Utility` found for enum `RuntimeCall` --> runtime/testnet/src/proxy_config.rs:102:21 | 102 | | RuntimeCall::Utility { .. } | ^^^^^^^ variant not found in `RuntimeCall` | ::: runtime/testnet/src/lib.rs:564:1 | 564 | / construct_runtime!( 565 | | pub enum Runtime { 566 | | // System support stuff. 567 | | System: frame_system = 0, ... | 608 | | } 609 | | ); | |_- variant `Utility` not found here
no variant named `Multisig` found for enum `RuntimeCall`: runtime/testnet/src/proxy_config.rs#L79
error[E0599]: no variant named `Multisig` found for enum `RuntimeCall` --> runtime/testnet/src/proxy_config.rs:79:22 | 79 | | RuntimeCall::Multisig { .. } | ^^^^^^^^ variant not found in `RuntimeCall` | ::: runtime/testnet/src/lib.rs:564:1 | 564 | / construct_runtime!( 565 | | pub enum Runtime { 566 | | // System support stuff. 567 | | System: frame_system = 0, ... | 608 | | } 609 | | ); | |_- variant `Multisig` not found here
no variant named `Utility` found for enum `RuntimeCall`: runtime/testnet/src/proxy_config.rs#L78
error[E0599]: no variant named `Utility` found for enum `RuntimeCall` --> runtime/testnet/src/proxy_config.rs:78:22 | 78 | | RuntimeCall::Utility { .. } | ^^^^^^^ variant not found in `RuntimeCall` | ::: runtime/testnet/src/lib.rs:564:1 | 564 | / construct_runtime!( 565 | | pub enum Runtime { 566 | | // System support stuff. 567 | | System: frame_system = 0, ... | 608 | | } 609 | | ); | |_- variant `Utility` not found here
no variant named `Multisig` found for enum `RuntimeCall`: runtime/testnet/src/proxy_config.rs#L72
error[E0599]: no variant named `Multisig` found for enum `RuntimeCall` --> runtime/testnet/src/proxy_config.rs:72:21 | 72 | | RuntimeCall::Multisig { .. } | ^^^^^^^^ variant not found in `RuntimeCall` | ::: runtime/testnet/src/lib.rs:564:1 | 564 | / construct_runtime!( 565 | | pub enum Runtime { 566 | | // System support stuff. 567 | | System: frame_system = 0, ... | 608 | | } 609 | | ); | |_- variant `Multisig` not found here
no variant named `Utility` found for enum `RuntimeCall`: runtime/testnet/src/proxy_config.rs#L71
error[E0599]: no variant named `Utility` found for enum `RuntimeCall` --> runtime/testnet/src/proxy_config.rs:71:21 | 71 | | RuntimeCall::Utility { .. } | ^^^^^^^ variant not found in `RuntimeCall` | ::: runtime/testnet/src/lib.rs:564:1 | 564 | / construct_runtime!( 565 | | pub enum Runtime { 566 | | // System support stuff. 567 | | System: frame_system = 0, ... | 608 | | } 609 | | ); | |_- variant `Utility` not found here
clippy
Clippy had exited with the 101 exit code
check
Process completed with exit code 101.
test
Process completed with exit code 101.
lint
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/.
used a field initializer for a tuple struct: scripts/fund-dev-accounts/./main.rs#L54
warning: used a field initializer for a tuple struct --> scripts/fund-dev-accounts/./main.rs:54:9 | 54 | id: AssetId { 0: Location { parents: 0, interior: Junctions::Here } }, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `AssetId(Location { parents: 0, interior: Junctions::Here })` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#init_numbered_fields
used a field initializer for a tuple struct: scripts/fund-dev-accounts/./main.rs#L52
warning: used a field initializer for a tuple struct --> scripts/fund-dev-accounts/./main.rs:52:36 | 52 | let assets = VersionedAssets::V4(Assets { | __________________________________________^ 53 | | 0: vec![Asset { 54 | | id: AssetId { 0: Location { parents: 0, interior: Junctions::Here } }, 55 | | fun: amount, 56 | | }], 57 | | }); | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#init_numbered_fields = note: `#[warn(clippy::init_numbered_fields)]` on by default help: try | 52 ~ let assets = VersionedAssets::V4(Assets(<[_]>::into_vec( 53 + // This rustc_box is not required, but it produces a dramatic improvement in compile 54 + // time when constructing arrays with many elements. 55 + #[rustc_box] 56 + $crate::boxed::Box::new([$($x),+]) 57 ~ ))); |
clippy
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/cache@v3, actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
clippy
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
check
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/cache@v3, Swatinem/rust-cache@v2.5.0. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
test
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3, actions/cache@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.