Fix amount in satoshis
This commit is contained in:
parent
42ee794c3e
commit
491aef0acf
1 changed files with 1 additions and 1 deletions
|
|
@ -363,7 +363,7 @@ angular.module('copayApp.controllers').controller('amountController', function($
|
||||||
|
|
||||||
if (unit.isFiat) {
|
if (unit.isFiat) {
|
||||||
amount = fromFiat(_amount);
|
amount = fromFiat(_amount);
|
||||||
} else if ($scope.useSendMax) {
|
} else {
|
||||||
amount = (amount * unitToSatoshi).toFixed(0);
|
amount = (amount * unitToSatoshi).toFixed(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue