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 03259db commit aa00234Copy full SHA for aa00234
internal/storage/postgres.go
@@ -131,12 +131,12 @@ func (p *PostgresConnector) GetBlockFailures(qf QueryFilter) ([]common.BlockFail
131
if !ok {
132
return nil, fmt.Errorf("failed to parse chain_id '%s' as big.Int", chainIdStr)
133
}
134
-
+
135
failure.BlockNumber, ok = new(big.Int).SetString(blockNumberStr, 10)
136
137
return nil, fmt.Errorf("failed to parse block_number '%s' as big.Int", blockNumberStr)
138
139
140
failure.FailureTime = time.Unix(timestamp, 0)
141
failure.FailureCount = count
142
0 commit comments