Includes error in panic in initial accounts hash verification (#30725)

This commit is contained in:
Brooks 2023-03-15 12:24:55 -04:00 committed by GitHub
parent a5f86a8212
commit cefb00e3fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ impl VerifyAccountsHashInBackground {
}
let result = lock.take().unwrap().join().unwrap();
if !result {
panic!("initial hash verification failed");
panic!("initial hash verification failed: {result:?}");
}
// we never have to check again
self.verification_complete();