去掉提现固定账号+1

This commit is contained in:
renhaoting 2026-01-05 19:19:03 +08:00
parent 85bceb3b68
commit cec3ba6ba8
2 changed files with 7 additions and 1 deletions

View File

@ -75,6 +75,7 @@ class WithdrawManager private constructor() {
const val ERROR_PAYOUT_REACH_TIMES_LIMIT = 9 + 20
const val ERROR_PAYOUT_TODAY_NO_CHANCE = 10 + 20
const val ERROR_PAYOUT_ACCOUNT_REACH_TIMES_LIMIT = 11 + 20
const val ERROR_PAYOUT_ACCOUNT_INVALID = 18 + 20
const val ERROR_PAYOUT_USER_IDENTITY_LIMIT = 12 + 20
const val ERROR_PAYOUT_MUST_WITHDRAW01_FIRST = 25 + 20
@ -539,6 +540,10 @@ class WithdrawManager private constructor() {
failTextRes = R.string.withdraw_account_times_limit
}
ERROR_PAYOUT_ACCOUNT_INVALID -> {
failTextRes = R.string.withdraw_account_invalid
}
ERROR_PAYOUT_USER_IDENTITY_LIMIT -> {
failTextRes = R.string.withdraw_fail_user_identity_limit
}

View File

@ -226,10 +226,11 @@
<string name="withdraw_fail_country_restriction">Country restriction</string>
<string name="withdraw_fail_reach_amount_limit">Reach amount limit</string>
<string name="withdraw_fail_reach_times_limit">Reach times limit</string>
<string name="withdraw_fail_today_no_chance">Today chance is run out</string>
<string name="withdraw_fail_today_no_chance">You have no more withdrawal opportunities today.</string>
<string name="withdraw_account_times_limit">Your account is reach times limit</string>
<string name="withdraw_fail_user_identity_limit">Your account is not valid</string>
<string name="withdraw_fail_must_withdraw_01_first">You have to withdraw 0.1 firstly</string>
<string name="withdraw_account_invalid">Your CPF account is invalid.</string>
</resources>