coot

Results 172 comments of coot

Thanks, @astroz777, for your report. Could you check if the `useLedgerAfterSlot` in the `topology.json` file doesn't point to a too old slot? If the node tries to use the ledger...

You're `useLedgerAfterSlot` seems fine. Could you share the logs when the incident happened? You can send them privately to my email `[email protected]` or on matrix `@the-coot:matrix.org`.

@ironmask285 ` closed when reading data, waiting on next header True` - this means the remote closed the connection. There's nothing wrong with that. _I formatted your message with triple...

Thanks for the report, and minimal examples. Which compiler version are you using? We've seen some memory leaks introduced by `ghc-9.2` which went away with `ghc-9.4`. It was fixed in...

The first suspect is the classic problem with streaming (all `mini-protocols` are using a similar API). This is well explained in this [blog post](https://www.well-typed.com/blog/2016/09/sharing-conduit/). Using `-fno-full-laziness` could alleviate the problem.

I noticed you're using `ghc-9.2.5` in [your example](https://github.com/jonathangenlambda/cardanoapileak/blob/main/cabal.project#L16). Can you reproduce it with `ghc-9.4` or `9.6`?

Good to hear that `ghc-9.6` works for you. Can you upgrade the compiler to `9.6`? If not you could also try to add this snippet to your `cabal.project.local` file: ```...

The most general signature that I can come up with: ``` composeWith :: forall f g h a b c . Functor f => Functor g => Functor h =>...

I don't see how to get `phi` of type ``` phi :: (x -> y -> z) -> f x -> g y -> Product f g z ``` [here](http://try.purescript.org/?gist=b31f48d16ad43cec8c0afcd470ac5add&session=c38b1ad6-7aab-f518-8d75-8f200dde7057)