diff --git a/exchange/bitswap/workers.go b/exchange/bitswap/workers.go
index 82fb40de939718a269b032b9d1c82173aea3b0da..1083566a1fb10b6fb23b4eaca82e6fec3ee2edad 100644
--- a/exchange/bitswap/workers.go
+++ b/exchange/bitswap/workers.go
@@ -42,11 +42,9 @@ func (bs *Bitswap) startWorkers(px process.Process, ctx context.Context) {
 	}
 
 	// Start up a worker to manage periodically resending our wantlist out to peers
-	/*
-		px.Go(func(px process.Process) {
-			bs.rebroadcastWorker(ctx)
-		})
-	*/
+	px.Go(func(px process.Process) {
+		bs.rebroadcastWorker(ctx)
+	})
 
 	// Start up a worker to manage sending out provides messages
 	px.Go(func(px process.Process) {