Source file client_daemon.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
let rec retry_on_disconnection (cctxt : #Protocol_client_context.full) f =
let open Lwt_result_syntax in
let*! result = f () in
match result with
| Ok () -> return_unit
| Error (Baking_errors.Node_connection_lost :: _) ->
let*! () =
cctxt#warning
"Lost connection with the node. Retrying to establish connection..."
in
let* () =
Client_confirmations.wait_for_bootstrapped
~retry:
(Baking_scheduling.retry
cctxt
~max_delay:10.
~delay:1.
~factor:1.5
~tries:max_int)
cctxt
in
retry_on_disconnection cctxt f
| Error err ->
cctxt#error "Unexpected error: %a. Exiting..." pp_print_trace err
let await_protocol_start (cctxt : #Protocol_client_context.full) ~chain =
let open Lwt_result_syntax in
let*! () =
cctxt#message "Waiting for protocol %s to start..." Protocol.name
in
Node_rpc.await_protocol_activation cctxt ~chain ()
module Baker = struct
let run (cctxt : Protocol_client_context.full) ?minimal_fees
?minimal_nanotez_per_gas_unit ?minimal_nanotez_per_byte ?votes
? ?dal_node_endpoint ?pre_emptive_forge_time ?force_apply
?context_path ?state_recorder ~chain ~keep_alive delegates =
let open Lwt_result_syntax in
let process () =
let* user_activated_upgrades =
Config_services.user_activated_upgrades cctxt
in
let* constants =
let* chain_id =
Shell_services.Chain.chain_id cctxt ~chain:cctxt#chain ()
in
Protocol.Alpha_services.Constants.all cctxt (`Hash chain_id, `Head 0)
in
let block_time_s =
Int64.to_float
(Protocol.Alpha_context.Period.to_seconds
constants.parametric.minimal_block_delay)
in
let* pre_emptive_forge_time =
match Option.map Q.to_float pre_emptive_forge_time with
| Some t ->
if t >= block_time_s then
failwith
"pre-emptive-forge-time must be less than current block time \
(<= %f seconds)"
block_time_s
else return t
| None -> return (Float.mul 0.15 block_time_s)
in
let*! () =
if pre_emptive_forge_time <> 0. then
cctxt#message
"pre-emptive-forge-time optimization set to %fs. Operation \
inclusion window is ~%fs. Caution: Setting this too high may \
result in reduced block proposal rewards."
pre_emptive_forge_time
(Float.sub block_time_s pre_emptive_forge_time)
else Lwt.return_unit
in
let pre_emptive_forge_time =
Time.System.Span.of_seconds_exn pre_emptive_forge_time
in
let config =
Baking_configuration.make
?minimal_fees
?minimal_nanotez_per_gas_unit
?minimal_nanotez_per_byte
?votes
?extra_operations
?dal_node_endpoint
~pre_emptive_forge_time
?force_apply
?context_path
~user_activated_upgrades
?state_recorder
()
in
let*! () =
cctxt#message
"Baker %a (%s) for %a started."
Tezos_version.Version.pp_simple
Tezos_version_value.Current_git_info.octez_version
Tezos_version_value.Current_git_info.abbreviated_commit_hash
Protocol_hash.pp_short
Protocol.hash
in
let canceler = Lwt_canceler.create () in
let _ =
Lwt_exit.register_clean_up_callback ~loc:__LOC__ (fun _ ->
let*! () = cctxt#message "Shutting down the baker..." in
let*! _ = Lwt_canceler.cancel canceler in
Lwt.return_unit)
in
let* () =
let* dal_config = Node_rpc.fetch_dal_config cctxt in
let*? () = Cryptobox.Config.init_verifier_dal dal_config in
return_unit
in
let consumer = Protocol_logging.make_log_message_consumer () in
Lifted_protocol.set_log_message_consumer consumer ;
Baking_scheduling.run cctxt ~canceler ~chain ~constants config delegates
in
let* () =
Client_confirmations.wait_for_bootstrapped
~retry:(Baking_scheduling.retry cctxt ~delay:1. ~factor:1.5 ~tries:5)
cctxt
in
let* () = await_protocol_start cctxt ~chain in
if keep_alive then retry_on_disconnection cctxt process else process ()
end
module Accuser = struct
let run (cctxt : #Protocol_client_context.full) ~chain ~preserved_levels
~keep_alive =
let open Lwt_result_syntax in
let process () =
let*! () =
cctxt#message
"Accuser %a (%s) for %a started."
Tezos_version.Version.pp_simple
Tezos_version_value.Current_git_info.octez_version
Tezos_version_value.Current_git_info.abbreviated_commit_hash
Protocol_hash.pp_short
Protocol.hash
in
let* valid_blocks_stream, _ =
Client_baking_blocks.monitor_applied_blocks
~next_protocols:(Some [Protocol.hash])
cctxt
~chains:[chain]
()
in
let canceler = Lwt_canceler.create () in
let _ =
Lwt_exit.register_clean_up_callback ~loc:__LOC__ (fun _ ->
let*! () = cctxt#message "Shutting down the accuser..." in
let*! _ = Lwt_canceler.cancel canceler in
Lwt.return_unit)
in
Client_baking_denunciation.create
cctxt
~canceler
~preserved_levels
valid_blocks_stream
in
let* () =
Client_confirmations.wait_for_bootstrapped
~retry:(Baking_scheduling.retry cctxt ~delay:1. ~factor:1.5 ~tries:5)
cctxt
in
let* () = await_protocol_start cctxt ~chain in
if keep_alive then retry_on_disconnection cctxt process else process ()
end
module VDF = struct
let run (cctxt : Protocol_client_context.full) ~chain ~keep_alive =
let open Lwt_result_syntax in
let process () =
let*! () =
cctxt#message
"VDF daemon %a (%s) for %a started."
Tezos_version.Version.pp_simple
Tezos_version_value.Current_git_info.octez_version
Tezos_version_value.Current_git_info.abbreviated_commit_hash
Protocol_hash.pp_short
Protocol.hash
in
let* chain_id = Shell_services.Chain.chain_id cctxt ~chain () in
let* constants =
Protocol.Alpha_services.Constants.all cctxt (`Hash chain_id, `Head 0)
in
let canceler = Lwt_canceler.create () in
let _ =
Lwt_exit.register_clean_up_callback ~loc:__LOC__ (fun _ ->
let*! () = cctxt#message "Shutting down the VDF daemon..." in
let*! _ = Lwt_canceler.cancel canceler in
Lwt.return_unit)
in
Baking_vdf.start_vdf_worker cctxt ~canceler constants chain
in
let* () =
Client_confirmations.wait_for_bootstrapped
~retry:(Baking_scheduling.retry cctxt ~delay:1. ~factor:1.5 ~tries:5)
cctxt
in
let* () = await_protocol_start cctxt ~chain in
if keep_alive then retry_on_disconnection cctxt process else process ()
end