From 6911c04684c22b2a703f67675d30f75a118161f7 Mon Sep 17 00:00:00 2001 From: Ladd Hoffman Date: Thu, 2 May 2024 19:20:11 -0500 Subject: [PATCH] fixup, require bluebird --- backend/src/util/add-post-with-retry.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/src/util/add-post-with-retry.js b/backend/src/util/add-post-with-retry.js index 431078c..ffcc60f 100644 --- a/backend/src/util/add-post-with-retry.js +++ b/backend/src/util/add-post-with-retry.js @@ -1,3 +1,5 @@ +const Promise = require('bluebird'); + const { dao } = require('./contracts'); const addPostWithRetry = async (authors, hash, citations, retryDelay = 5000) => {