eth, internal, light: fix error string capitalization (#25364)

This commit is contained in:
Seungbae.yu
2022-07-25 12:53:44 +03:00
committed by GitHub
parent 39900be087
commit d2247d9f5d
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -582,5 +582,5 @@ func (api *DebugAPI) GetAccessibleState(from, to rpc.BlockNumber) (uint64, error
return uint64(i), nil
}
}
return 0, fmt.Errorf("No state found")
return 0, fmt.Errorf("no state found")
}