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

<hr>

<p>In <a href="https://github.com/bisq-network/bisq/pull/4094#discussion_r399007955">core/src/main/java/bisq/core/btc/wallet/TradeWalletService.java</a>:</p>
<pre style='color:#555'>> @@ -1216,4 +1219,25 @@ private void applyLockTime(long lockTime, Transaction tx) {
         tx.getInputs().forEach(input -> input.setSequenceNumber(TransactionInput.NO_SEQUENCE - 1));
         tx.setLockTime(lockTime);
     }
+
+    private boolean removeDust(Transaction tx) {
+        List<TransactionOutput> txos = tx.getOutputs();
+        List<TransactionOutput> toKeep = new ArrayList<TransactionOutput>();
+        for (TransactionOutput zz: txos) {
+            if (zz.getValue().value >= 546) {
+                toKeep.add(zz);
+            }
+            else {
+                log.info("removing dust TXO = {}", zz.getValue().toFriendlyString());
</pre>
<p>Thankyou for the review!  I have made the changes you suggested.  Here is an example of the more verbose logging as a result of this change:</p>
<p><a target="_blank" rel="noopener noreferrer" href="https://user-images.githubusercontent.com/47253594/77716425-2be97680-6fac-11ea-817b-81b3cc4b6fe2.png"><img src="https://user-images.githubusercontent.com/47253594/77716425-2be97680-6fac-11ea-817b-81b3cc4b6fe2.png" alt="image" style="max-width:100%;"></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/4094#discussion_r399007955">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AJFFTNULMTYAZSZBIQZMK3DRJQIWBANCNFSM4LS2HZMQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AJFFTNRXUCICKQJY6T2Z6H3RJQIWBA5CNFSM4LS2HZM2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGOC3GUFIQ.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/4094#discussion_r399007955",
"url": "https://github.com/bisq-network/bisq/pull/4094#discussion_r399007955",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>