Skip to content
Closed
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 96 files
+44 −17 Cargo.lock
+3 −1 Cargo.toml
+14 −0 pallets/acurast/common/src/attestation.rs
+35 −1 pallets/acurast/common/src/attestation/asn.rs
+19 −10 pallets/acurast/common/src/traits.rs
+60 −7 pallets/acurast/common/src/types.rs
+4 −4 pallets/acurast/src/benchmarking.rs
+106 −0 pallets/acurast/src/functions.rs
+3 −79 pallets/acurast/src/lib.rs
+2 −2 pallets/acurast/src/tests.rs
+1 −3 pallets/acurast/src/traits.rs
+62 −0 pallets/candidate-preselection/Cargo.toml
+52 −0 pallets/candidate-preselection/src/benchmarking.rs
+91 −0 pallets/candidate-preselection/src/lib.rs
+103 −0 pallets/candidate-preselection/src/mock.rs
+33 −0 pallets/candidate-preselection/src/tests.rs
+17 −0 pallets/candidate-preselection/src/traits.rs
+13 −4 pallets/compute/src/benchmarking.rs
+7 −5 pallets/compute/src/hooks.rs
+184 −167 pallets/compute/src/lib.rs
+3 −3 pallets/compute/src/migration.rs
+10 −108 pallets/compute/src/mock.rs
+88 −96 pallets/compute/src/tests.rs
+9 −26 pallets/compute/src/traits.rs
+43 −11 pallets/compute/src/types.rs
+4 −0 pallets/compute/src/weights.rs
+1 −1 pallets/hyperdrive-ibc/src/tests.rs
+13 −17 pallets/hyperdrive-token/src/chain/ethereum.rs
+1 −1 pallets/hyperdrive-token/src/lib.rs
+1 −1 pallets/hyperdrive-token/src/mock.rs
+1 −1 pallets/hyperdrive-token/src/types.rs
+74 −11 pallets/marketplace/src/benchmarking.rs
+1 −33 pallets/marketplace/src/error.rs
+5 −5 pallets/marketplace/src/functions.rs
+7 −3 pallets/marketplace/src/hooks.rs
+288 −4 pallets/marketplace/src/lib.rs
+28 −18 pallets/marketplace/src/match_checker.rs
+18 −119 pallets/marketplace/src/mock.rs
+383 −7 pallets/marketplace/src/tests.rs
+5 −6 pallets/marketplace/src/traits.rs
+4 −0 pallets/marketplace/src/types.rs
+308 −186 pallets/marketplace/src/weights.rs
+6 −3 pallets/processor-manager/src/benchmarking.rs
+67 −70 pallets/processor-manager/src/functions.rs
+18 −47 pallets/processor-manager/src/lib.rs
+12 −3 pallets/processor-manager/src/mock.rs
+22 −20 pallets/processor-manager/src/tests.rs
+0 −24 pallets/processor-manager/src/traits.rs
+14 −1 pallets/processor-manager/src/types.rs
+4 −1 runtime/acurast-kusama/Cargo.toml
+14 −2 runtime/acurast-kusama/src/benchmarking.rs
+4 −5 runtime/acurast-kusama/src/constants.rs
+2 −0 runtime/acurast-kusama/src/lib.rs
+1 −0 runtime/acurast-kusama/src/pallets.rs
+9 −0 runtime/acurast-kusama/src/pallets/pallet_acurast_candidate_preselection_config.rs
+11 −12 runtime/acurast-kusama/src/pallets/pallet_acurast_compute_config.rs
+4 −14 runtime/acurast-kusama/src/pallets/pallet_acurast_marketplace_config.rs
+12 −8 runtime/acurast-kusama/src/pallets/pallet_acurast_processor_manager_config.rs
+3 −3 runtime/acurast-kusama/src/pallets/pallet_collator_selection_config.rs
+4 −1 runtime/acurast-mainnet/Cargo.toml
+13 −1 runtime/acurast-mainnet/src/benchmarking.rs
+3 −4 runtime/acurast-mainnet/src/constants.rs
+2 −0 runtime/acurast-mainnet/src/lib.rs
+1 −0 runtime/acurast-mainnet/src/pallets.rs
+9 −0 runtime/acurast-mainnet/src/pallets/pallet_acurast_candidate_preselection_config.rs
+11 −12 runtime/acurast-mainnet/src/pallets/pallet_acurast_compute_config.rs
+8 −17 runtime/acurast-mainnet/src/pallets/pallet_acurast_marketplace_config.rs
+12 −8 runtime/acurast-mainnet/src/pallets/pallet_acurast_processor_manager_config.rs
+3 −3 runtime/acurast-mainnet/src/pallets/pallet_collator_selection_config.rs
+4 −1 runtime/acurast-rococo/Cargo.toml
+13 −1 runtime/acurast-rococo/src/benchmarking.rs
+5 −6 runtime/acurast-rococo/src/constants.rs
+2 −0 runtime/acurast-rococo/src/lib.rs
+1 −0 runtime/acurast-rococo/src/pallets.rs
+9 −0 runtime/acurast-rococo/src/pallets/pallet_acurast_candidate_preselection_config.rs
+13 −14 runtime/acurast-rococo/src/pallets/pallet_acurast_compute_config.rs
+8 −17 runtime/acurast-rococo/src/pallets/pallet_acurast_marketplace_config.rs
+12 −8 runtime/acurast-rococo/src/pallets/pallet_acurast_processor_manager_config.rs
+3 −3 runtime/acurast-rococo/src/pallets/pallet_collator_selection_config.rs
+3 −0 runtime/common/Cargo.toml
+8 −102 runtime/common/src/types.rs
+20 −15 runtime/common/src/utils.rs
+1 −0 runtime/common/src/weight.rs
+28 −28 runtime/common/src/weight/frame_system.rs
+18 −18 runtime/common/src/weight/frame_system_extensions.rs
+34 −28 runtime/common/src/weight/pallet_acurast.rs
+58 −0 runtime/common/src/weight/pallet_acurast_candidate_preselection.rs
+25 −14 runtime/common/src/weight/pallet_acurast_compute.rs
+3 −3 runtime/common/src/weight/pallet_acurast_fee_manager.rs
+15 −15 runtime/common/src/weight/pallet_acurast_hyperdrive_token.rs
+111 −34 runtime/common/src/weight/pallet_acurast_marketplace.rs
+43 −41 runtime/common/src/weight/pallet_acurast_processor_manager.rs
+25 −25 runtime/common/src/weight/pallet_balances.rs
+23 −23 runtime/common/src/weight/pallet_message_queue.rs
+5 −5 runtime/common/src/weight/pallet_session.rs
+5 −5 runtime/common/src/weight/pallet_timestamp.rs
Loading