(ids []ulid.ULID)
| 1169 | } |
| 1170 | |
| 1171 | func convertULIDsToString(ids []ulid.ULID) []string { |
| 1172 | res := make([]string, len(ids)) |
| 1173 | for idx, id := range ids { |
| 1174 | res[idx] = id.String() |
| 1175 | } |
| 1176 | return res |
| 1177 | } |
| 1178 | |
| 1179 | func convertBlockHintsToULIDs(hints []hintspb.Block) ([]ulid.ULID, error) { |
| 1180 | res := make([]ulid.ULID, len(hints)) |
no test coverage detected