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

Update informational prompt upon creating fiat account with account signing details #3467

Merged
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions core/src/main/resources/i18n/displayStrings.properties
Expand Up @@ -2898,9 +2898,9 @@ payment.limits.info=To limit chargeback risk, Bisq sets per-trade buy limits bas
so it is limited to buying {0} per trade. \
After it is signed, buy limits will increase as follows:\n\
\n\
● Before signing, and 30 days after signing, your per-trade buy limit will be {1}\n\
● 30 days after signing, your per-trade buy limit will be {2}\n\
● 60 days after signing, your per-trade buy limit will be {3}\n\
● Before signing, and 30 days after signing, your per-trade buy limit will be {0}\n\
● 30 days after signing, your per-trade buy limit will be {1}\n\
● 60 days after signing, your per-trade buy limit will be {2}\n\
\n\
Sell limits are not affected by account signing, and increase merely as account age increases. More information is at https://docs.bisq.network/payment-methods#account-signing.\n\
\n\
Expand Down
Expand Up @@ -239,7 +239,6 @@ private void onSaveNewAccount(PaymentAccount paymentAccount) {
} else {
new Popup<>().information(Res.get("payment.limits.info",
formatter.formatCoinWithCode(OfferRestrictions.TOLERATED_SMALL_TRADE_AMOUNT),
formatter.formatCoinWithCode(maxTradeLimitFirstMonth),
formatter.formatCoinWithCode(maxTradeLimitSecondMonth),
formatter.formatCoinWithCode(maxTradeLimitAsCoin)))
.width(700)
Expand Down