From 070e0e96133806ce961801704664e291873656ae Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Fri, 26 Apr 2019 14:42:04 -0700 Subject: [PATCH] Skip *de*serializing too --- install/src/update_manifest.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/src/update_manifest.rs b/install/src/update_manifest.rs index 6c3f1eb13..eda2af253 100644 --- a/install/src/update_manifest.rs +++ b/install/src/update_manifest.rs @@ -18,7 +18,7 @@ pub struct UpdateManifest { pub struct SignedUpdateManifest { pub manifest: UpdateManifest, pub manifest_signature: Signature, - #[serde(skip_serializing)] + #[serde(skip)] pub account_pubkey: Pubkey, }