From aab999846269e147ddd606a779562740db7f93d2 Mon Sep 17 00:00:00 2001 From: Ladd Hoffman Date: Sat, 4 May 2024 18:20:02 -0500 Subject: [PATCH] More logging --- backend/src/event-handlers/rollup/submit-rollup.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/src/event-handlers/rollup/submit-rollup.js b/backend/src/event-handlers/rollup/submit-rollup.js index 9dc04b7..4635d60 100644 --- a/backend/src/event-handlers/rollup/submit-rollup.js +++ b/backend/src/event-handlers/rollup/submit-rollup.js @@ -30,8 +30,10 @@ const submitRollup = async () => { sender, authors, citations, content, embeddedData, signature, }); // Add rollup post on-chain + console.log('adding batch post on-chain', { authors, batchPostId, citations }); await addPostWithRetry(authors, batchPostId, citations); // Stake our availability to be the next rollup worker + console.log('staking availability to be the next rollup worker'); await stakeRollupAvailability(); // Call Rollup.submitBatch console.log('Submitting batch', { batchPostId, batchItems, authors });