aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-11-17 15:10:46 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-11-17 15:10:46 +0100
commitd64861acec41927787dbe65ccd2067cd900b1f67 (patch)
treef934a4193849057bf2eee820d74b2c60ccf276b2
parent4f6327930a69fad0a33566126e7e17fb8cb99f6e (diff)
downloadwallet-core-d64861acec41927787dbe65ccd2067cd900b1f67.tar.xz
remove early return intended for debugging
-rw-r--r--src/wallet.ts1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/wallet.ts b/src/wallet.ts
index 658b00539..354072130 100644
--- a/src/wallet.ts
+++ b/src/wallet.ts
@@ -728,7 +728,6 @@ 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),