revert fractional base to 1e6

This commit is contained in:
Florian Dold 2016-11-17 21:01:44 +01:00
parent b90d1c0318
commit 790e266ff3

View File

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