From 07f46b54631fb7e250dbb0fe0aa1c30bb6a99729 Mon Sep 17 00:00:00 2001 From: Aurora Gaffney Date: Mon, 5 May 2025 14:51:03 -0400 Subject: [PATCH] fix: disable indexer bulk mode Signed-off-by: Aurora Gaffney --- internal/indexer/indexer.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/indexer/indexer.go b/internal/indexer/indexer.go index 28a546a..2a2476d 100644 --- a/internal/indexer/indexer.go +++ b/internal/indexer/indexer.go @@ -139,7 +139,8 @@ func (i *Indexer) Start() error { } }, ), - input_chainsync.WithBulkMode(true), + // TODO: re-enable this after https://github.com/blinklabs-io/adder/issues/412 is fixed + // input_chainsync.WithBulkMode(true), input_chainsync.WithAutoReconnect(true), input_chainsync.WithLogger(logging.GetLogger()), }