diff --git a/node/network/approval-distribution/src/lib.rs b/node/network/approval-distribution/src/lib.rs index 12c9e107d256..0fa29350d11e 100644 --- a/node/network/approval-distribution/src/lib.rs +++ b/node/network/approval-distribution/src/lib.rs @@ -1112,7 +1112,12 @@ impl State { return }, }; - + for candidate_index in claimed_candidate_indices.iter_ones() { + gum::error!( + target: LOG_TARGET, ?block_hash, ?candidate_index, ?validator_index, + peer_id = ?source.peer_id(), "Received assignment" + ); + } // Compute metadata on the assignment. let (message_subject, message_kind) = ( MessageSubject(block_hash, claimed_candidate_indices.clone(), validator_index), diff --git a/zombienet_tests/functional/0006-approval-voting-coalescing.toml b/zombienet_tests/functional/0006-approval-voting-coalescing.toml index a2c8ceb72f27..374a24fd99c3 100644 --- a/zombienet_tests/functional/0006-approval-voting-coalescing.toml +++ b/zombienet_tests/functional/0006-approval-voting-coalescing.toml @@ -8,7 +8,7 @@ chain_spec_command = "polkadot build-spec --chain rococo-local --disable-default [relaychain.genesis.runtime.runtime_genesis_config.configuration.config] needed_approvals = 8 - relay_vrf_modulo_samples = 3 + relay_vrf_modulo_samples = {{RELAY_VRF_MODULO_SAMPLES}} [relaychain.genesis.runtime.runtime_genesis_config.configuration.config.approval_voting_params] max_approval_coalesce_count = {{MAX_APPROVAL_COALESCE_COUNT}}