Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/lib/mina_graphql/mina_graphql.ml
Original file line number Diff line number Diff line change
Expand Up @@ -2381,14 +2381,14 @@ module Queries = struct
| `Bootstrapping ->
Deferred.Result.fail "Daemon is bootstrapping"
| `Active breadcrumb -> (
let target_height =
let txn_stop_slot_opt =
match runtime_config.daemon with
| Some daemon ->
daemon.slot_tx_end
| None ->
None
in
match target_height with
match txn_stop_slot_opt with
| None ->
return breadcrumb
| Some txn_stop_slot ->
Expand Down