a few missed set_data calls (#15846)

* a few missed set_data calls

* another set data call
This commit is contained in:
Jeff Washington (jwash)
2021-03-15 21:57:23 -05:00
committed by GitHub
parent e50f284658
commit efee8b62d7
2 changed files with 3 additions and 3 deletions

View File

@ -726,7 +726,7 @@ pub mod tests {
let owner = Pubkey::default();
let data_len = 3_u64;
let mut account = AccountSharedData::new(0, data_len as usize, &owner);
account.data = b"abc".to_vec();
account.set_data(b"abc".to_vec());
let stored_meta = StoredMeta {
write_version: 0,
pubkey,