fix decimal
This commit is contained in:
parent
172ae4ae52
commit
e92d5a0333
1 changed files with 1 additions and 1 deletions
|
|
@ -242,7 +242,7 @@ angular.module('copayApp.controllers').controller('amountController', function($
|
|||
var amount = $scope.showAlternativeAmount ? fromFiat(_amount) : _amount;
|
||||
$state.transitionTo('tabs.send.confirm', {
|
||||
isWallet: $scope.isWallet,
|
||||
toAmount: (amount * unitToSatoshi).toFixed(unitDecimals),
|
||||
toAmount: (amount * unitToSatoshi).toFixed(0),
|
||||
toAddress: $scope.toAddress,
|
||||
toName: $scope.toName,
|
||||
toEmail: $scope.toEmail
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue