From cefb00e3fb263e6565ab75ab0b7d7d38a3faafeb Mon Sep 17 00:00:00 2001 From: Brooks Date: Wed, 15 Mar 2023 12:24:55 -0400 Subject: [PATCH] Includes error in panic in initial accounts hash verification (#30725) --- runtime/src/verify_accounts_hash_in_background.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/verify_accounts_hash_in_background.rs b/runtime/src/verify_accounts_hash_in_background.rs index 63a7eeed97..121d884f3e 100644 --- a/runtime/src/verify_accounts_hash_in_background.rs +++ b/runtime/src/verify_accounts_hash_in_background.rs @@ -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();