Keep CLI method enum members in alphabetical order

This commit is contained in:
ghubstan 2021-01-17 13:05:07 -03:00
parent 04657d9054
commit 8907d6b4a8
No known key found for this signature in database
GPG Key ID: E35592D6800A861E

View File

@ -21,36 +21,36 @@ package bisq.cli;
* Currently supported api methods. * Currently supported api methods.
*/ */
public enum Method { public enum Method {
createoffer,
canceloffer, canceloffer,
getoffer,
getmyoffer,
getoffers,
getmyoffers,
takeoffer,
gettrade,
confirmpaymentstarted,
confirmpaymentreceived, confirmpaymentreceived,
keepfunds, confirmpaymentstarted,
withdrawfunds, createoffer,
getpaymentmethods,
getpaymentacctform,
createpaymentacct, createpaymentacct,
getpaymentaccts,
getversion,
getbalance,
getaddressbalance, getaddressbalance,
getbalance,
getfundingaddresses, getfundingaddresses,
getmyoffer,
getmyoffers,
getoffer,
getoffers,
getpaymentacctform,
getpaymentaccts,
getpaymentmethods,
gettrade,
gettransaction,
gettxfeerate,
getunusedbsqaddress, getunusedbsqaddress,
getversion,
keepfunds,
lockwallet,
registerdisputeagent,
removewalletpassword,
sendbsq, sendbsq,
sendbtc, sendbtc,
gettxfeerate,
settxfeerate, settxfeerate,
unsettxfeerate,
gettransaction,
lockwallet,
unlockwallet,
removewalletpassword,
setwalletpassword, setwalletpassword,
registerdisputeagent takeoffer,
unlockwallet,
unsettxfeerate,
withdrawfunds
} }