pending-executions is just no longer needed at all

This commit is contained in:
Rob Culliton 2018-05-05 09:03:50 -04:00
parent e2a1692f82
commit 9137d68d04
No known key found for this signature in database
GPG Key ID: 6FDEF60B3DC84D94
2 changed files with 0 additions and 15 deletions

View File

@ -304,16 +304,6 @@ AND r.repo_id = i.repo_id
AND u.id = p.user_id
AND i.execute_hash IS NULL;
-- :name pending-executions :? :*
-- :doc recently posted executions waiting for bot confirmation to be mined
SELECT
i.contract_address AS contract_address,
i.issue_id AS issue_id,
i.execute_hash AS execute_hash
FROM issues i
WHERE i.execute_posted IS NULL
AND i.execute_hash IS NOT NULL;
-- :name pending-payouts :? :*
-- :doc recently closed issues awaiting for bot confirmation to be mined
SELECT

View File

@ -30,11 +30,6 @@
(jdbc/with-db-connection [con-db *db*]
(db/pending-bounties con-db)))
(defn pending-executions
[]
(jdbc/with-db-connection [con-db *db*]
(db/pending-executions con-db)))
(defn pending-payouts
[]
(jdbc/with-db-connection [con-db *db*]