File tree Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Expand file tree Collapse file tree 4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 60
60
61
61
module type Rpcs_versioned_S = sig
62
62
module Get_work : sig
63
- module V2 : sig
63
+ module V3 : sig
64
64
type query = unit [@@ deriving bin_io ]
65
65
66
66
type response =
@@ -71,7 +71,7 @@ module type Rpcs_versioned_S = sig
71
71
val rpc : (query , response ) Rpc.Rpc .t
72
72
end
73
73
74
- module Latest = V2
74
+ module Latest = V3
75
75
end
76
76
77
77
module Submit_work : sig
@@ -87,7 +87,7 @@ module type Rpcs_versioned_S = sig
87
87
end
88
88
89
89
module Failed_to_generate_snark : sig
90
- module V2 : sig
90
+ module V3 : sig
91
91
type query =
92
92
Error .t
93
93
* Selector.Spec.Stable.Latest .t
@@ -99,6 +99,6 @@ module type Rpcs_versioned_S = sig
99
99
val rpc : (query , response ) Rpc.Rpc .t
100
100
end
101
101
102
- module Latest = V2
102
+ module Latest = V3
103
103
end
104
104
end
Original file line number Diff line number Diff line change @@ -27,11 +27,11 @@ include Versioned_rpc.Both_convert.Plain.Make (Master)
27
27
28
28
[%% versioned_rpc
29
29
module Stable = struct
30
- module V2 = struct
30
+ module V3 = struct
31
31
module T = struct
32
32
type query =
33
33
Mina_stdlib.Bounded_types.Wrapped_error.Stable.V1 .t
34
- * Selector.Spec.Stable.V1 .t
34
+ * Selector.Spec.Stable.V2 .t
35
35
* Signature_lib.Public_key.Compressed.Stable.V1 .t
36
36
37
37
type response = unit
@@ -49,5 +49,5 @@ module Stable = struct
49
49
include Register (T )
50
50
end
51
51
52
- module Latest = V2
52
+ module Latest = V3
53
53
end ]
Original file line number Diff line number Diff line change @@ -27,12 +27,12 @@ include Versioned_rpc.Both_convert.Plain.Make (Master)
27
27
28
28
[%% versioned_rpc
29
29
module Stable = struct
30
- module V2 = struct
30
+ module V3 = struct
31
31
module T = struct
32
32
type query = unit
33
33
34
34
type response =
35
- ( Selector.Spec.Stable.V1 .t
35
+ ( Selector.Spec.Stable.V2 .t
36
36
* Signature_lib.Public_key.Compressed.Stable.V1 .t )
37
37
option
38
38
@@ -49,5 +49,5 @@ module Stable = struct
49
49
include Register (T )
50
50
end
51
51
52
- module Latest = V2
52
+ module Latest = V3
53
53
end ]
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ include Versioned_rpc.Both_convert.Plain.Make (Master)
26
26
module Stable = struct
27
27
module V2 = struct
28
28
module T = struct
29
- type query = Selector.Result.Stable.V1 .t
29
+ type query = Selector.Result.Stable.V2 .t
30
30
31
31
type response = unit
32
32
You can’t perform that action at this time.
0 commit comments