Remove hash field from account (#9915)

This commit is contained in:
Justin Starry
2020-05-12 23:39:46 +08:00
committed by GitHub
parent a75086287c
commit 5cc252d471
7 changed files with 43 additions and 54 deletions

View File

@ -1,4 +1,4 @@
use crate::{account::Account, hash::Hash};
use crate::account::Account;
crate::declare_id!("NativeLoader1111111111111111111111111111111");
@ -10,6 +10,5 @@ pub fn create_loadable_account(name: &str) -> Account {
data: name.as_bytes().to_vec(),
executable: true,
rent_epoch: 0,
hash: Hash::default(),
}
}