[bisq-network/bisq] Add API test harness for Linux & OSX (#4366)

Stan notifications at github.com
Tue Aug 18 13:42:45 UTC 2020


@ghubstan commented on this pull request.



> +    }
+
+    protected final void lockWallet() {
+        //noinspection ResultOfMethodCallIgnored
+        grpcStubs.walletsService.lockWallet(createLockWalletRequest());
+    }
+
+    protected final String getUnusedBtcAddress() {
+        return grpcStubs.walletsService.getFundingAddresses(createGetFundingAddressesRequest())
+                .getAddressBalanceInfoList()
+                .stream()
+                .filter(a -> a.getBalance() == 0 && a.getNumConfirmations() == 0)
+                .findFirst()
+                .get()
+                .getAddress();
+

Extra while line removed in commit c3abd4e.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/bisq-network/bisq/pull/4366#discussion_r472206433
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.bisq.network/pipermail/bisq-github/attachments/20200818/636ce5c5/attachment-0001.html>


More information about the bisq-github mailing list