Disable re-deploying of failed contracts

* do not try to automatically re-deploy failed bounty contracts
This commit is contained in:
Teemu Patja 2017-05-31 11:50:24 +03:00
parent a4e4a80f31
commit babca32460
No known key found for this signature in database
GPG Key ID: F5B7035E6580FD4C
1 changed files with 3 additions and 1 deletions

View File

@ -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)