Remove old feature: simple_capitalization (#15763)

* Remove old feature: simple_capitalization

* Fix another failing test in core

* Finish up test cleanup

* Further clean up a bit
This commit is contained in:
Ryo Onodera
2021-03-12 11:12:40 +09:00
committed by GitHub
parent 209dbb6f7c
commit 4bbeb9c033
11 changed files with 115 additions and 502 deletions

View File

@ -103,9 +103,7 @@ fn main() {
} else {
let mut pubkeys: Vec<Pubkey> = vec![];
let mut time = Measure::start("hash");
let results = accounts
.accounts_db
.update_accounts_hash(0, &ancestors, true);
let results = accounts.accounts_db.update_accounts_hash(0, &ancestors);
time.stop();
let mut time_store = Measure::start("hash using store");
let results_store = accounts.accounts_db.update_accounts_hash_with_index_option(
@ -113,7 +111,6 @@ fn main() {
false,
solana_sdk::clock::Slot::default(),
&ancestors,
true,
None,
);
time_store.stop();