Skip to content

Commit 11e2809

Browse files
committed
fmt
1 parent f637378 commit 11e2809

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

src/test/archive/archive_node_tests/archive_precomputed_blocks_test.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ let test_case (test_data : t) =
128128
Archive.Process.start_logging test_data.archive ~log_file ;
129129
let%bind () =
130130
Daemon.archive_blocks_from_files daemon.executor
131-
~archive_address:test_data.archive.config.server_port
132-
~format:`Precomputed precomputed_blocks
131+
~archive_address:test_data.archive.config.server_port ~format:`Precomputed
132+
precomputed_blocks
133133
in
134134

135135
let%bind () =

src/test/mina_automation/missing_blocks_guardian.ml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ module Config = struct
3434
; ("DB_PORT", Int.to_string (Option.value_exn (Uri.port t.archive_uri)))
3535
; ("DB_NAME", path_no_leading_slash)
3636
; ("PGPASSWORD", Option.value_exn (Uri.password t.archive_uri))
37-
; ("BLOCKS_FORMAT", (match t.block_format with `Precomputed -> "precomputed" | `Extensional -> "extensional"))
37+
; ( "BLOCKS_FORMAT"
38+
, match t.block_format with
39+
| `Precomputed ->
40+
"precomputed"
41+
| `Extensional ->
42+
"extensional" )
3843
; ("MISSING_BLOCKS_AUDITOR", t.missing_blocks_auditor)
3944
; ("ARCHIVE_BLOCKS", t.archive_blocks)
4045
]

0 commit comments

Comments
 (0)