Allow for hard fork at last root (#10762)

This commit is contained in:
sakridge 2020-06-23 21:49:11 -07:00 committed by GitHub
parent 3aab13a167
commit 0e393a5684
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ pub fn process_blockstore_from_root(
for hard_fork_slot in new_hard_forks.iter() {
// Ensure the user isn't trying to add new hard forks for a slot that's earlier than the current
// root slot. Doing so won't cause any effect so emit an error
if *hard_fork_slot <= start_slot {
if *hard_fork_slot < start_slot {
error!(
"Unable to add new hard fork at {}, it must be greater than slot {}",
hard_fork_slot, start_slot