From babca324606de66586da01814e7b4334801a8a7d Mon Sep 17 00:00:00 2001 From: Teemu Patja Date: Wed, 31 May 2017 11:50:24 +0300 Subject: [PATCH] Disable re-deploying of failed contracts * do not try to automatically re-deploy failed bounty contracts --- src/clj/commiteth/scheduler.clj | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/clj/commiteth/scheduler.clj b/src/clj/commiteth/scheduler.clj index d57003b..b03d08b 100644 --- a/src/clj/commiteth/scheduler.clj +++ b/src/clj/commiteth/scheduler.clj @@ -184,7 +184,9 @@ (defn run-periodic-tasks [time] (do (log/debug "run-periodic-tasks" time) - (redeploy-failed-contracts) + ;; TODO: disabled for now. looks like it may cause extraneus + ;; contract deployments and costs + #_(redeploy-failed-contracts) (deploy-pending-contracts) (update-issue-contract-address) (update-confirm-hash)