From 91d947a6670c4e94a0009aeabb26ef9eb9c859bf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20M=C3=BCller?= Date: Wed, 15 Dec 2021 14:57:16 +0100 Subject: [PATCH] Change slot claim strategy to RoundRobin to prepare for multi-validateer setup --- enclave-runtime/src/top_pool_execution.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enclave-runtime/src/top_pool_execution.rs b/enclave-runtime/src/top_pool_execution.rs index 90e46906b7..098b96a26e 100644 --- a/enclave-runtime/src/top_pool_execution.rs +++ b/enclave-runtime/src/top_pool_execution.rs @@ -258,7 +258,7 @@ where block_import_trigger, proposer_environment, ) - .with_claim_strategy(SlotClaimStrategy::Always) + .with_claim_strategy(SlotClaimStrategy::RoundRobin) .with_allow_delayed_proposal(true); let (blocks, xts): (Vec<_>, Vec<_>) =