Alpha: remove dead alphanet specific code

This commit is contained in:
Benjamin Canou 2018-03-16 10:26:49 +01:00
parent 6dccfa4a1f
commit b4dad92a7d
2 changed files with 0 additions and 9 deletions

View File

@ -36,9 +36,3 @@ module Index = struct
end
| _ -> None
end
let rec too_many_roll next =
if Compare.Int32.(next < 100_000l) then
0
else
1 + too_many_roll (Int32.div next 2l)

View File

@ -28,6 +28,3 @@ module Index : sig
val to_path: t -> string list -> string list
val of_path: string list -> t option
end
(** Hack for the alphanet. *)
val too_many_roll: t -> int