fix typo (#23535)
This commit is contained in:
parent
b719d6a2ad
commit
cc4d75a16f
|
@ -528,11 +528,11 @@ where
|
||||||
let mut measure_notify = Measure::start("accounts_notify");
|
let mut measure_notify = Measure::start("accounts_notify");
|
||||||
|
|
||||||
let accounts_db = Arc::new(accounts_db);
|
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()
|
let handle = Builder::new()
|
||||||
.name("notify_account_restore_from_snapshot".to_string())
|
.name("notify_account_restore_from_snapshot".to_string())
|
||||||
.spawn(move || {
|
.spawn(move || {
|
||||||
accoounts_db_clone.notify_account_restore_from_snapshot();
|
accounts_db_clone.notify_account_restore_from_snapshot();
|
||||||
})
|
})
|
||||||
.unwrap();
|
.unwrap();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue