From 31bff68f94404114eff0bc7507dd11aa231ac06c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Tue, 31 May 2022 14:43:49 +0200 Subject: [PATCH] Require signed authority discovery records (#5591) Nodes are already publishing signed records since 0.9.17, but now we also enable the validation of the signature. --- polkadot/node/service/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/polkadot/node/service/src/lib.rs b/polkadot/node/service/src/lib.rs index 6e996fd7ea..95b613d998 100644 --- a/polkadot/node/service/src/lib.rs +++ b/polkadot/node/service/src/lib.rs @@ -992,6 +992,8 @@ where let (worker, service) = sc_authority_discovery::new_worker_and_service_with_config( sc_authority_discovery::WorkerConfig { publish_non_global_ips: auth_disc_publish_non_global_ips, + // Require that authority discovery records are signed. + strict_record_validation: true, ..Default::default() }, client.clone(),