use index version of calculating hash (#15189)
* use index version of calculating hash * invert const * formatting
This commit is contained in:
parent
63feea72b2
commit
8424fe2c12
|
@ -122,8 +122,9 @@ impl SnapshotRequestHandler {
|
||||||
|
|
||||||
let mut hash_time = Measure::start("hash_time");
|
let mut hash_time = Measure::start("hash_time");
|
||||||
let mut hash_for_testing = None;
|
let mut hash_for_testing = None;
|
||||||
|
const USE_INDEX: bool = true;
|
||||||
snapshot_root_bank
|
snapshot_root_bank
|
||||||
.update_accounts_hash_with_index_option(true, test_hash_calculation);
|
.update_accounts_hash_with_index_option(!USE_INDEX, test_hash_calculation);
|
||||||
if test_hash_calculation {
|
if test_hash_calculation {
|
||||||
hash_for_testing = Some(snapshot_root_bank.get_accounts_hash());
|
hash_for_testing = Some(snapshot_root_bank.get_accounts_hash());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue