Skip to content

Commit aa00234

Browse files
committed
Gofmt
1 parent 03259db commit aa00234

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

internal/storage/postgres.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,12 +131,12 @@ func (p *PostgresConnector) GetBlockFailures(qf QueryFilter) ([]common.BlockFail
131131
if !ok {
132132
return nil, fmt.Errorf("failed to parse chain_id '%s' as big.Int", chainIdStr)
133133
}
134-
134+
135135
failure.BlockNumber, ok = new(big.Int).SetString(blockNumberStr, 10)
136136
if !ok {
137137
return nil, fmt.Errorf("failed to parse block_number '%s' as big.Int", blockNumberStr)
138138
}
139-
139+
140140
failure.FailureTime = time.Unix(timestamp, 0)
141141
failure.FailureCount = count
142142

0 commit comments

Comments
 (0)