Skip to content

Commit df9e10e

Browse files
authored
chore: fix method name (#13468)
Signed-off-by: oncecelll <oncecell@outlook.com>
1 parent 941455f commit df9e10e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chain/sync.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,10 @@ func (syncer *Syncer) Start() {
168168

169169
syncer.tickerCtxCancel = tickerCtxCancel
170170

171-
go syncer.runMetricsTricker(tickerCtx)
171+
go syncer.runMetricsTicker(tickerCtx)
172172
}
173173

174-
func (syncer *Syncer) runMetricsTricker(tickerCtx context.Context) {
174+
func (syncer *Syncer) runMetricsTicker(tickerCtx context.Context) {
175175
genesisTime := time.Unix(int64(syncer.Genesis.MinTimestamp()), 0)
176176
ticker := build.Clock.Ticker(time.Duration(buildconstants.BlockDelaySecs) * time.Second)
177177
defer ticker.Stop()

0 commit comments

Comments
 (0)