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

<hr>

<p>In <a href="https://github.com/bisq-network/bisq/pull/4304#discussion_r442909430">core/src/main/java/bisq/core/grpc/CoreWalletsService.java</a>:</p>
<pre style='color:#555'>> @@ -80,6 +80,15 @@ public long getAddressBalance(String addressString) {
         return btcWalletService.getBalanceForAddress(address).value;
     }
 
+    public String getAddressBalanceInfo(String addressString) {
+        var satoshiBalance = getAddressBalance(addressString);
+        var btcBalance = formatSatoshis.apply(satoshiBalance);
+        var numConfirmations = getNumConfirmationsForMostRecentTransaction(addressString);
+        return addressString
+                + "  balance: " + format("%13s", btcBalance)
+                + ((numConfirmations > 0) ? ("  confirmations: " + format("%6d", numConfirmations)) : "");
</pre>
<p>A note: formatting logic in <code>getAddressInfo</code> and <code>getFundingAddresses</code> has a fair amount of duplication.</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/4304#pullrequestreview-434170634">view it on GitHub</a>, or <a href="https://github.com/notifications/unsubscribe-auth/AJFFTNXYIB3CBOE5HUDDHMTRXOAWLANCNFSM4N5RLXJQ">unsubscribe</a>.<img src="https://github.com/notifications/beacon/AJFFTNSDWV3IUZOIAOEELILRXOAWLA5CNFSM4N5RLXJ2YY3PNVWWK3TUL52HS4DFWFIHK3DMKJSXC5LFON2FEZLWNFSXPKTDN5WW2ZLOORPWSZGODHQOWCQ.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/4304#pullrequestreview-434170634",
"url": "https://github.com/bisq-network/bisq/pull/4304#pullrequestreview-434170634",
"name": "View Pull Request"
},
"description": "View this Pull Request on GitHub",
"publisher": {
"@type": "Organization",
"name": "GitHub",
"url": "https://github.com"
}
}
]</script>