-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
wontfixThis will not be worked onThis will not be worked on
Description
See
fusiondart/lib/src/output_handling.dart
Lines 692 to 706 in 67986f1
| // TODO implement custom modes. | |
| /* | |
| if (mode == 'custom') { | |
| String selectType = walletConf.selector[0]; | |
| double selectAmount = walletConf.selector[1]; | |
| if (selectType == 'size' && sumValue.toInt() != 0) { | |
| fraction = COIN_FRACTION_FUDGE_FACTOR * selectAmount / sumValue; | |
| } else if (selectType == 'count' && selectAmount.toInt() != 0) { | |
| fraction = COIN_FRACTION_FUDGE_FACTOR / selectAmount; | |
| } else if (selectType == 'fraction') { | |
| fraction = selectAmount; | |
| } | |
| // Note: fraction at this point could be <0 or >1 but doesn't matter. | |
| } else */ |
Metadata
Metadata
Assignees
Labels
wontfixThis will not be worked onThis will not be worked on