Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DRAFT] Create new getstatus API method #4502

Closed
wants to merge 20 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 4 additions & 5 deletions core/src/main/java/bisq/core/api/CoreApi.java
Expand Up @@ -193,11 +193,10 @@ public int getNumConfirmationsForMostRecentTransaction(String addressString) {

@SuppressWarnings("SameReturnValue")
public int ping() {
// Clients should ping the server and verify it received a pong (1) before
// attempting any operation. Many operations require an available, non-null
// wallet balance, and it is assumed the service is ready to accept any request
// if the wallet balance is available. If the balance is not available for any
// reason, an IllegalStateException will be thrown by the wallets service.
// Many operations require an available, non-null wallet balance, and it is
// assumed the service is ready to accept any request if the wallet balance is
// available. If the balance is not available for any reason, an
// IllegalStateException will be thrown by the wallets service.
walletsService.getAvailableBalance();
return 1;
}
Expand Down