From 027ec71aa9ae245c525033eabc3637ad0d21dff7 Mon Sep 17 00:00:00 2001 From: Ryo Onodera Date: Mon, 17 Feb 2020 20:07:36 +0900 Subject: [PATCH] Remove AccountInfo's (De)Serialize (#8313) automerge --- runtime/src/accounts_db.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/accounts_db.rs b/runtime/src/accounts_db.rs index ecae383829..17f2ea6874 100644 --- a/runtime/src/accounts_db.rs +++ b/runtime/src/accounts_db.rs @@ -73,7 +73,7 @@ pub struct ErrorCounters { pub invalid_account_index: usize, } -#[derive(Deserialize, Serialize, Default, Debug, PartialEq, Clone)] +#[derive(Default, Debug, PartialEq, Clone)] pub struct AccountInfo { /// index identifying the append storage store_id: AppendVecId,