Skip to content

Commit

Permalink
Update append_vec.rs
Browse files Browse the repository at this point in the history
Removed Print Statement in append_vec_sequential_read
  • Loading branch information
SynergyCipher committed Apr 27, 2024
1 parent 27eff84 commit e45e49e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion accounts-db/benches/append_vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ fn append_vec_sequential_read(bencher: &mut Bencher) {
let mut indexes = add_test_accounts(&vec, size);
bencher.iter(|| {
let (sample, pos) = indexes.pop().unwrap();
println!("reading pos {sample} {pos}");
let (account, _next) = vec.get_account(pos).unwrap();
let (_meta, test) = create_test_account(sample);
assert_eq!(account.data(), test.data());
Expand Down

0 comments on commit e45e49e

Please sign in to comment.