mirror of
https://github.com/ACINQ/eclair.git
synced 2025-02-25 15:09:53 +01:00
This is due to a callback being executed after the parent actor has been cleaned up. We don't really care about the result anyway, so we can safely ignore, even if the issue only arises in tests. The root problem here is that we are making references to actor methods from a callback, which we shouldn't do, because whatever we reference may have disappeared by the time the callback tries to access it. A better pattern would be to `pipe` the results of the `Future` to oneself, but that would require more work and possibly change the FSM, which seems overkill for the issue at hand. |
||
---|---|---|
.. | ||
src | ||
eclair-cli | ||
pom.xml |