Account->AccountSharedData (#15691)

This commit is contained in:
Jeff Washington (jwash)
2021-03-09 15:06:07 -06:00
committed by GitHub
parent 61c7ce857e
commit 8a3135d17b
71 changed files with 2032 additions and 1161 deletions

View File

@@ -13,7 +13,7 @@ fn bench_to_from_account(b: &mut Bencher) {
b.iter(|| {
let account = create_account(&slot_history, 0);
slot_history = from_account::<SlotHistory>(&account).unwrap();
slot_history = from_account::<SlotHistory, _>(&account).unwrap();
});
}