From 05a3200ca6ad6c6254f0b5871a2b62848a99ab93 Mon Sep 17 00:00:00 2001 From: steviez Date: Sun, 13 Oct 2024 21:17:05 -0500 Subject: [PATCH] chore: Fix whitespace in error message (#3154) --- runtime/src/bank.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/bank.rs b/runtime/src/bank.rs index 8b01326a44dd08..bd19c71fbb99bc 100644 --- a/runtime/src/bank.rs +++ b/runtime/src/bank.rs @@ -1735,7 +1735,7 @@ impl Bank { // from the passed in genesis_config instead (as new()/new_with_paths() already do) assert_eq!( bank.genesis_creation_time, genesis_config.creation_time, - "Bank snapshot genesis creation time does not match genesis.bin creation time.\ + "Bank snapshot genesis creation time does not match genesis.bin creation time. \ The snapshot and genesis.bin might pertain to different clusters" ); assert_eq!(bank.ticks_per_slot, genesis_config.ticks_per_slot);