Updated on 2026-08-14
This commit is contained in:
parent
88bf5f0535
commit
8fc105db06
1 changed files with 3 additions and 1 deletions
|
|
@ -30,7 +30,9 @@ class SaltPayRegistrationManager(
|
|||
) {
|
||||
val kycUrlProvider = KYCUrlProvider(walletPublicKey, kycProvider)
|
||||
|
||||
private val approvalValue: BigDecimal = BigDecimal.valueOf(Math.pow(2.toDouble(), 256.toDouble()) - 1)
|
||||
private val approvalValue: BigDecimal = BigDecimal(2).pow(256).minus(BigDecimal.ONE)
|
||||
.movePointLeft(gnosisRegistrator.walletManager.wallet.blockchain.decimals())
|
||||
|
||||
private val spendLimitValue: BigDecimal = BigDecimal("100")
|
||||
|
||||
fun transactionIsSent(): Boolean {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue