<p></p>
<p><b>@ghubstan</b> commented on this pull request.</p>

<hr>

<p>In <a href="https://github.com/bisq-network/bisq/pull/4711#discussion_r515526928">core/src/main/java/bisq/core/api/CoreTradesService.java</a>:</p>
<pre style='color:#555'>>      }
 
     String getTradeRole(String tradeId) {
         return tradeUtil.getRole(getTrade(tradeId));
     }
 
     Trade getTrade(String tradeId) {
-        return tradeManager.getTradeById(tradeId).orElseThrow(() ->
-                new IllegalArgumentException(format("trade with id '%s' not found", tradeId)));
+        return getOpenTrade(tradeId).orElseGet(() ->
+                getClosedTrade(tradeId).orElseThrow(() ->
+                        new IllegalArgumentException(format("trade with id '%s' not found", tradeId))
+                ));
+    }
+
+    private Optional<Trade> getOpenTrade(String tradeId) {
+        return tradeManager.getTradeById(tradeId);
+    }
+
+    private Optional<Trade> getClosedTrade(String tradeId) {
+        return closedTradableManager.getTradableById(tradeId).map(value -> (Trade) value);
</pre>
<p>Fixed in PR <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="733231135" data-permission-text="Title is private" data-url="https://github.com/bisq-network/bisq/issues/4731" data-hovercard-type="pull_request" data-hovercard-url="/bisq-network/bisq/pull/4731/hovercard" href="https://github.com/bisq-network/bisq/pull/4731">#4731</a>, commit <a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/bisq-network/bisq/commit/fcdfc687e45d1d613838d7189aa4e8edd41228e2/hovercard" href="https://github.com/bisq-network/bisq/commit/fcdfc687e45d1d613838d7189aa4e8edd41228e2"><tt>fcdfc68</tt></a>.</p>

<p style="font-size:small;-webkit-text-size-adjust:none;color:#666;">—<br />You are receiving this because you are subscribed to this thread.<br />Reply to this email directly, <a href="https://github.com/bisq-network/bisq/pull/4711#discussion_r515526928">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AJFFTNUM3N57OPJXQEWFE7TSNRLWNANCNFSM4TACBNKQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AJFFTNXLPHYSEUCGV5GP4X3SNRLWNA5CNFSM4TACBNK2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOD4IERVY.gif" height="1" width="1" alt="" /></p>
<script type="application/ld+json">[
{
"@context": "http://schema.org",
"@type": "EmailMessage",
"potentialAction": {
"@type": "ViewAction",
"target": "https://github.com/bisq-network/bisq/pull/4711#discussion_r515526928",
"url": "https://github.com/bisq-network/bisq/pull/4711#discussion_r515526928",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>