-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expose isDaoStateReadyAndInSync status to API clients.
- Loading branch information
jmacxx
committed
Feb 9, 2024
1 parent
e9e62b9
commit 0eb50d4
Showing
9 changed files
with
83 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,5 +64,6 @@ public enum Method { | |
unlockwallet, | ||
unsettxfeerate, | ||
withdrawfunds, | ||
stop | ||
stop, | ||
getdaostatus | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
getdaostatus | ||
|
||
NAME | ||
---- | ||
getdaostatus - get DAO status | ||
|
||
SYNOPSIS | ||
-------- | ||
getdaostatus | ||
|
||
DESCRIPTION | ||
----------- | ||
Returns the operating status of the Bisq DAO: | ||
true - DAO is ready and in sync | ||
false - DAO is not ready | ||
|
||
At startup the status will return false until the DAO has completed synchronizing. | ||
Trading operations should not be performed when the status is false. | ||
While running, the status can be used to determine if DAO is in sync with the seed nodes. | ||
|
||
EXAMPLES | ||
-------- | ||
$ ./bisq-cli --password=xyz --port=9998 getdaostatus |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters