diff --git a/apps/recovery-relay/lib/wallets/XRP/index.ts b/apps/recovery-relay/lib/wallets/XRP/index.ts index 6d504a9d..86bf0fed 100644 --- a/apps/recovery-relay/lib/wallets/XRP/index.ts +++ b/apps/recovery-relay/lib/wallets/XRP/index.ts @@ -51,7 +51,7 @@ export class Ripple extends BaseRipple implements ConnectedWallet { ); const preparedData = { - balance: balance - this.MIN_XRP_BALANCE, + balance: parseFloat((balance - this.MIN_XRP_BALANCE).toFixed(6)), extraParams, insufficientBalance: balance - this.MIN_XRP_BALANCE < 0.0001, };