[bisq-network/bisq] Clear payment account payload info from closed trades. (PR #6001)

Christoph Atteneder notifications at github.com
Fri Feb 25 16:18:12 CET 2022


@ripcurlx commented on this pull request.



> +                .filter(e -> e.isClosed())
+                .filter(e -> e.getTradeDate().toInstant().isBefore(safeDate))

Maybe you want to use: 
```
.filter(Dispute::isClosed)
.filter(e -> e.getOpeningDate().toInstant().isBefore(safeDate))
```
instead?

-- 
Reply to this email directly or view it on GitHub:
https://github.com/bisq-network/bisq/pull/6001#pullrequestreview-893800689
You are receiving this because you are subscribed to this thread.

Message ID: <bisq-network/bisq/pull/6001/review/893800689 at github.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.bisq.network/pipermail/bisq-github/attachments/20220225/efba7a7b/attachment.htm>


More information about the bisq-github mailing list