Add idle to sync stage's String()

This commit is contained in:
Aayush Rajasekaran 2021-03-01 23:56:51 -05:00
parent 191a05da48
commit 9850e786e8

View File

@ -862,6 +862,8 @@ const (
func (v SyncStateStage) String() string {
switch v {
case StageIdle:
return "idle"
case StageHeaders:
return "header sync"
case StagePersistHeaders: