Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump submodules/acurast from c5e6efc to 3d9eedf #681

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion submodules/acurast
Submodule acurast updated 67 files
+39 −9 .gitlab-ci.yml
+44 −40 Cargo.lock
+3 −2 Cargo.toml
+11 −11 Dockerfile
+1 −1 pallets/acurast/common/src/tests.rs
+38 −1 pallets/acurast/common/src/traits.rs
+46 −20 pallets/acurast/common/src/types.rs
+0 −1 pallets/acurast/src/utils.rs
+39 −20 pallets/compute/Cargo.toml
+143 −0 pallets/compute/src/benchmarking.rs
+5 −0 pallets/compute/src/datastructures.rs
+133 −0 pallets/compute/src/datastructures/provisional_buffer.rs
+189 −0 pallets/compute/src/datastructures/sliding_buffer.rs
+19 −0 pallets/compute/src/hooks.rs
+486 −0 pallets/compute/src/lib.rs
+70 −0 pallets/compute/src/migration.rs
+245 −0 pallets/compute/src/mock.rs
+3 −0 pallets/compute/src/stub.rs
+521 −0 pallets/compute/src/tests.rs
+72 −0 pallets/compute/src/traits.rs
+118 −0 pallets/compute/src/types.rs
+89 −0 pallets/compute/src/weights.rs
+21 −4 pallets/marketplace/src/benchmarking.rs
+130 −90 pallets/marketplace/src/functions.rs
+7 −4 pallets/marketplace/src/hooks.rs
+18 −4 pallets/marketplace/src/lib.rs
+156 −102 pallets/marketplace/src/match_checker.rs
+1 −1 pallets/marketplace/src/mock.rs
+20 −15 pallets/marketplace/src/payments.rs
+97 −24 pallets/marketplace/src/tests.rs
+41 −0 pallets/marketplace/src/types.rs
+46 −1 pallets/processor-manager/src/benchmarking.rs
+20 −20 pallets/processor-manager/src/functions.rs
+40 −3 pallets/processor-manager/src/lib.rs
+9 −1 pallets/processor-manager/src/mock.rs
+4 −12 pallets/processor-manager/src/traits.rs
+8 −1 pallets/processor-manager/src/types.rs
+33 −13 pallets/processor-manager/src/weights.rs
+0 −133 pallets/vesting/src/benchmarking.rs
+0 −523 pallets/vesting/src/lib.rs
+0 −186 pallets/vesting/src/mock.rs
+0 −774 pallets/vesting/src/tests.rs
+0 −67 pallets/vesting/src/traits.rs
+0 −54 pallets/vesting/src/types.rs
+5 −1 runtime/acurast-kusama/src/benchmarking.rs
+7 −1 runtime/acurast-kusama/src/pallets/pallet_acurast_processor_manager_config.rs
+5 −1 runtime/acurast-mainnet/src/benchmarking.rs
+7 −1 runtime/acurast-mainnet/src/pallets/pallet_acurast_processor_manager_config.rs
+3 −3 runtime/acurast-rococo/Cargo.toml
+20 −3 runtime/acurast-rococo/src/benchmarking.rs
+1 −1 runtime/acurast-rococo/src/constants.rs
+0 −78 runtime/acurast-rococo/src/implementations.rs
+2 −3 runtime/acurast-rococo/src/lib.rs
+1 −1 runtime/acurast-rococo/src/pallets.rs
+30 −0 runtime/acurast-rococo/src/pallets/pallet_acurast_compute_config.rs
+9 −3 runtime/acurast-rococo/src/pallets/pallet_acurast_processor_manager_config.rs
+0 −20 runtime/acurast-rococo/src/pallets/pallet_acurast_vesting_config.rs
+3 −3 runtime/common/Cargo.toml
+66 −7 runtime/common/src/types.rs
+1 −0 runtime/common/src/weight.rs
+31 −29 runtime/common/src/weight/pallet_acurast.rs
+103 −0 runtime/common/src/weight/pallet_acurast_compute.rs
+5 −5 runtime/common/src/weight/pallet_acurast_fee_manager.rs
+85 −63 runtime/common/src/weight/pallet_acurast_marketplace.rs
+77 −35 runtime/common/src/weight/pallet_acurast_processor_manager.rs
+0 −1 runtime/common/src/weights/mod.rs
+0 −148 runtime/common/src/weights/pallet_acurast_vesting.rs