Source file faked_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
module Baker = struct
let run ~(cctxt : #Protocol_client_context.full) ~stop_on_event ~chain_id
~(context_index : Abstract_context_index.t) ~delegates =
let chain = `Hash chain_id in
let baking_configuration =
let open Baking_configuration in
{
default_config with
validation = ContextIndex context_index;
state_recorder = Disabled;
}
in
let canceler = Lwt_canceler.create () in
let on_error (err : error trace) =
Lwt_canceler.cancel canceler >>= fun _ ->
Format.printf "%a" Error_monad.pp_print_trace err ;
Lwt_exit.exit_and_raise 1
in
Baking_scheduling.run
cctxt
~canceler
~stop_on_event
~on_error
~chain
baking_configuration
delegates
end