From 01658a83d51a2e828d38d92a67fff1545ce12981 Mon Sep 17 00:00:00 2001 From: Enzo Cioppettini Date: Thu, 18 Nov 2021 15:44:52 -0300 Subject: [PATCH] add place-holders for UpdateProposal certificates --- explorer/src/api/graphql/certificates.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/explorer/src/api/graphql/certificates.rs b/explorer/src/api/graphql/certificates.rs index c9deecd29b..b8a19be3f1 100644 --- a/explorer/src/api/graphql/certificates.rs +++ b/explorer/src/api/graphql/certificates.rs @@ -262,6 +262,8 @@ impl TryFrom for Certificate { certificate::Certificate::EncryptedVoteTally(c) => { Ok(Certificate::EncryptedVoteTally(EncryptedVoteTally(c))) } + certificate::Certificate::UpdateProposal(c) => todo!("port this from jormungandr"), + certificate::Certificate::UpdateVote(c) => todo!("port this from jormungandr"), } } }