Update project to use new account serialization format (#5848)

This commit is contained in:
Parth
2019-09-10 04:47:10 +05:30
committed by Michael Vines
parent 9dc5da7dbd
commit 468095ede2
7 changed files with 36 additions and 13 deletions

9
genesis/src/lib.rs Normal file
View File

@@ -0,0 +1,9 @@
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug)]
pub struct PrimordialAccountDetails {
pub balance: u64,
pub owner: String,
pub data: String,
pub executable: bool,
}