Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!--
A new scriv changelog fragment.

Uncomment the section that is right (remove the HTML comment wrapper).
For top level release notes, leave all the headers commented out.
-->

<!--
### Breaking

- A bullet item for the Breaking category.

-->

### Non-Breaking

- For pre-release development and testing purposes, use volatile tip
in local state query client.
3 changes: 2 additions & 1 deletion dmq-node/src/DMQ/NodeToClient/LocalStateQueryClient.hs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ cardanoClient tracer StakePools { stakePoolsVar } nextEpochVar =
where
idle mSystemStart = do
traceWith tracer $ Acquiring mSystemStart
pure $ SendMsgAcquire ImmutableTip acquire
-- FIXME: switched to volatiletip for prerelease testing purposes
pure $ SendMsgAcquire VolatileTip {-ImmutableTip-} acquire
where
acquire :: ClientStAcquiring block point query m Void
acquire = ClientStAcquiring {
Expand Down