You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The version 1.9.4 of the CLi shows the following help:
OPTIONS
-------
--offer-id
The ID of the buy or sell offer to take.
--payment-account
The ID of the fiat payment account used to send or receive funds during the trade.
The payment account's payment method must match that of the offer.
--fee-currency
The wallet currency used to pay the Bisq trade taker fee (BSQ|BTC). Default is BTC
But the web docs of the API show this:
Name
Type
Description
offer_id
string
The unique identifier of the offer being taken.
payment_account_id
string
The unique identifier of the payment account used to take offer.
taker_fee_currency_code
string
The code of the currency (BSQ or BTC) used to pay the taker's Bisq trade fee.
amount
uint64
The trade's intended BTC amount in satoshis. Ten million satoshis is represented as 10000000.If set, the takeoffer amount value must be >= offer.min_amount and <= offer.amount.If not set (0 default), the taken offer's (max) amount becomes the intended trade amount.
Notice how the amount argument described in the web docs does not appear in the CLI help.
The issue is both finding out which of them is true, and then fixing the wrong one so that both are correct and consistent.
The text was updated successfully, but these errors were encountered:
The version 1.9.4 of the CLi shows the following help:
But the web docs of the API show this:
Notice how the
amount
argument described in the web docs does not appear in the CLI help.The issue is both finding out which of them is true, and then fixing the wrong one so that both are correct and consistent.
The text was updated successfully, but these errors were encountered: