We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b57857 commit 756f640Copy full SHA for 756f640
core/state/database_history.go
@@ -32,6 +32,10 @@ import (
32
33
// historicReader wraps a historical state reader defined in path database,
34
// providing historic state serving over the path scheme.
35
+//
36
+// TODO(rjl493456442): historicReader is not thread-safe and does not fully
37
+// comply with the StateReader interface requirements, needs to be fixed.
38
+// Currently, it is only used in a non-concurrent context, so it is safe for now.
39
type historicReader struct {
40
reader *pathdb.HistoricalStateReader
41
}
0 commit comments