Skip to content

Commit

Permalink
Fixing error in codinguser#771
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Walters committed Apr 25, 2018
1 parent bec24f6 commit b5496aa
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,15 @@ public List<String> generateExport() throws ExporterException {
case 1000:
precision = 3;
break;
case 10000:
precision = 4;
break;
case 100000:
precision = 5;
break;
case 1000000:
precision = 6;
break;
default:
throw new ExporterException(mExportParams, "split quantity has illegal denominator: "+ quantity_denom);
}
Expand Down

0 comments on commit b5496aa

Please sign in to comment.