This commit is contained in:
Jeff Washington (jwash) 2022-03-08 18:28:00 -06:00 committed by GitHub
parent b719d6a2ad
commit cc4d75a16f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -528,11 +528,11 @@ where
let mut measure_notify = Measure::start("accounts_notify");
let accounts_db = Arc::new(accounts_db);
let accoounts_db_clone = accounts_db.clone();
let accounts_db_clone = accounts_db.clone();
let handle = Builder::new()
.name("notify_account_restore_from_snapshot".to_string())
.spawn(move || {
accoounts_db_clone.notify_account_restore_from_snapshot();
accounts_db_clone.notify_account_restore_from_snapshot();
})
.unwrap();