diff options
author | Florian Dold <florian.dold@gmail.com> | 2017-08-30 17:08:54 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2017-08-30 17:08:54 +0200 |
commit | 008926b18470e7f394cd640302957b29728a9803 (patch) | |
tree | 45f914f5117116bb3af5010f9e7570e99b015952 /src/crypto | |
parent | 24e021fef360448caf11ab5a489b570102e66f6f (diff) |
compute full fees for refresh and spending
Diffstat (limited to 'src/crypto')
-rw-r--r-- | src/crypto/cryptoApi.ts | 5 | ||||
-rw-r--r-- | src/crypto/cryptoWorker.ts | 4 |
2 files changed, 2 insertions, 7 deletions
diff --git a/src/crypto/cryptoApi.ts b/src/crypto/cryptoApi.ts index 227c3d346..00013f0d3 100644 --- a/src/crypto/cryptoApi.ts +++ b/src/crypto/cryptoApi.ts @@ -26,6 +26,7 @@ import { AmountJson, CoinRecord, + CoinWithDenom, ContractTerms, DenominationRecord, PayCoinInfo, @@ -36,10 +37,6 @@ import { WireFee, } from "../types"; -import { - CoinWithDenom, -} from "../wallet"; - import * as timer from "../timer"; import { startWorker } from "./startWorker"; diff --git a/src/crypto/cryptoWorker.ts b/src/crypto/cryptoWorker.ts index 1db6e62d5..92b766e9c 100644 --- a/src/crypto/cryptoWorker.ts +++ b/src/crypto/cryptoWorker.ts @@ -28,6 +28,7 @@ import { CoinPaySig, CoinRecord, CoinStatus, + CoinWithDenom, ContractTerms, DenominationRecord, PayCoinInfo, @@ -41,9 +42,6 @@ import { import { canonicalJson, } from "../helpers"; -import { - CoinWithDenom, -} from "../wallet"; import { Amount, |