aboutsummaryrefslogtreecommitdiff
path: root/src/wallet.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-11-17 14:29:16 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-11-17 14:29:16 +0100
commitb078844c7f53ba8c674c1658ff1a64c91e11f17a (patch)
tree56de0698ca453ee4c4ddab34820f6219dee5e9dc /src/wallet.ts
parent2cb642aac0f7e8342023cfdc8eda83d2dec5f4e0 (diff)
downloadwallet-core-b078844c7f53ba8c674c1658ff1a64c91e11f17a.tar.xz
do not truncate amounts
Diffstat (limited to 'src/wallet.ts')
-rw-r--r--src/wallet.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet.ts b/src/wallet.ts
index 354072130..658b00539 100644
--- a/src/wallet.ts
+++ b/src/wallet.ts
@@ -728,6 +728,7 @@ export class Wallet {
private async processPreCoin(preCoin: PreCoinRecord,
retryDelayMs = 200): Promise<void> {
+ return;
if (this.processPreCoinConcurrent >= 1) {
console.log("delaying processPreCoin");
setTimeout(() => this.processPreCoin(preCoin, retryDelayMs * 2),