change fractional base to 1e6

This commit is contained in:
Florian Dold 2016-11-18 14:57:07 +01:00
parent 813bfed1e1
commit 863dbe1d7b
2 changed files with 10 additions and 13 deletions

File diff suppressed because one or more lines are too long

View File

@ -509,7 +509,7 @@ export type PayCoinInfo = Array<{ updatedCoin: CoinRecord, sig: CoinPaySig }>;
export namespace Amounts {
export const fractionalBase = 1e6;
export const fractionalBase = 1e8;
export interface Result {
amount: AmountJson;