Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 973af25

Browse files
committed
DO NOT PUSH
Signed-off-by: Alexandru Gheorghe <alexandru.gheorghe@parity.io>
1 parent 1aa937d commit 973af25

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

node/network/approval-distribution/src/lib.rs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1112,7 +1112,12 @@ impl State {
11121112
return
11131113
},
11141114
};
1115-
1115+
for candidate_index in claimed_candidate_indices.iter_ones() {
1116+
gum::error!(
1117+
target: LOG_TARGET, ?block_hash, ?candidate_index, ?validator_index,
1118+
peer_id = ?source.peer_id(), "Received assignment"
1119+
);
1120+
}
11161121
// Compute metadata on the assignment.
11171122
let (message_subject, message_kind) = (
11181123
MessageSubject(block_hash, claimed_candidate_indices.clone(), validator_index),

zombienet_tests/functional/0006-approval-voting-coalescing.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ chain_spec_command = "polkadot build-spec --chain rococo-local --disable-default
88

99
[relaychain.genesis.runtime.runtime_genesis_config.configuration.config]
1010
needed_approvals = 8
11-
relay_vrf_modulo_samples = 3
11+
relay_vrf_modulo_samples = {{RELAY_VRF_MODULO_SAMPLES}}
1212

1313
[relaychain.genesis.runtime.runtime_genesis_config.configuration.config.approval_voting_params]
1414
max_approval_coalesce_count = {{MAX_APPROVAL_COALESCE_COUNT}}

0 commit comments

Comments
 (0)