From f6171c560f6fb71b2129214247f79f9e878072c1 Mon Sep 17 00:00:00 2001 From: Szymon Lesisz Date: Fri, 1 Nov 2019 13:50:54 +0100 Subject: [PATCH] fix XRP account update reserve to decimals --- src/actions/ripple/BlockchainActions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/actions/ripple/BlockchainActions.js b/src/actions/ripple/BlockchainActions.js index e481fe1f..8d19b9af 100644 --- a/src/actions/ripple/BlockchainActions.js +++ b/src/actions/ripple/BlockchainActions.js @@ -198,7 +198,7 @@ export const onNotification = ( ), block: updatedAccount.block, sequence: updatedAccount.sequence, - reserve: updatedAccount.reserve, + reserve: toDecimalAmount(updatedAccount.reserve, network.decimals), empty, }) );