From 46f9bc54c42a59502c9a08aa372a175d96541d68 Mon Sep 17 00:00:00 2001 From: peg Date: Thu, 19 Dec 2024 08:10:05 +0100 Subject: [PATCH] Minor edits missed from PR review --- CHANGELOG.md | 3 --- crates/shared/src/types.rs | 1 - 2 files changed, 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f3ce565ba..c448f25a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -45,9 +45,6 @@ runtime - Add TSS endpoint to get TDX quote ([#1173](https://github.com/entropyxyz/entropy-core/pull/1173)) - Add TDX test network chainspec ([#1204](https://github.com/entropyxyz/entropy-core/pull/1204)) - Test CLI command to retrieve quote and change endpoint / TSS account in one command ([#1198](https://github.com/entropyxyz/entropy-core/pull/1198)) -- In ([#1209]()) a `production` feature flag was added to `entropy` which if enabled will use - non-mock verification of PCK certificate chains in TDX quotes, meaning TSS servers must be running - on TDX hardware - On-chain unresponsiveness reporting [(#1215)](https://github.com/entropyxyz/entropy-core/pull/1215) ### Changed diff --git a/crates/shared/src/types.rs b/crates/shared/src/types.rs index a9655c760..7bada801c 100644 --- a/crates/shared/src/types.rs +++ b/crates/shared/src/types.rs @@ -187,7 +187,6 @@ impl AttestationHandler for () { _quote: Vec, _context: QuoteContext, ) -> Result { - // Ok(sp_runtime::BoundedVec::new()) Ok(BoundedVecEncodedVerifyingKey::try_from([0; 33].to_vec()).unwrap()) }