Skip to content

Commit

Permalink
Fix compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
fasmat committed Aug 12, 2024
1 parent 13a27f8 commit 2571e53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -1962,7 +1962,7 @@ func (app *App) setupDBs(ctx context.Context, lg log.Log) error {

if app.Config.ScanMalfeasantATXs {
app.log.With().Info("checking DB for malicious ATXs")
start = time.Now()
start := time.Now()

Check warning on line 1965 in node/node.go

View check run for this annotation

Codecov / codecov/patch

node/node.go#L1965

Added line #L1965 was not covered by tests
if err := activation.CheckPrevATXs(ctx, app.log.Zap(), app.db); err != nil {
return fmt.Errorf("malicious ATX check: %w", err)
}
Expand Down

0 comments on commit 2571e53

Please sign in to comment.