Skip to content

Commit

Permalink
fix(@fireblocks/recovery-relay): 🐛 fix/xrp balance in prepare
Browse files Browse the repository at this point in the history
  • Loading branch information
TomerHFB authored and a0ngo committed Jan 26, 2025
1 parent 8d11cdc commit 76767f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/recovery-relay/lib/wallets/XRP/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
Expand Down

0 comments on commit 76767f9

Please sign in to comment.