Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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