From cae0fd43e69d4e43d15d365b85f7f6ebacd4fb8f Mon Sep 17 00:00:00 2001
From: Steven Allen <steven@stebalien.com>
Date: Wed, 24 Jan 2024 21:19:27 -0800
Subject: [PATCH] fix: we changed the provider_sectors map to be keyed by
 actor-id (#1509)

---
 actors/market/src/state.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/actors/market/src/state.rs b/actors/market/src/state.rs
index dfeb56071..741ceaefb 100644
--- a/actors/market/src/state.rs
+++ b/actors/market/src/state.rs
@@ -82,7 +82,7 @@ pub struct State {
     /// or has data replaced.
     /// Grouping by provider limits the cost of operations in the expected use case
     /// of multiple sectors all belonging to the same provider.
-    /// HAMT[Address]HAMT[SectorNumber]SectorDealIDs
+    /// HAMT[ActorID]HAMT[SectorNumber]SectorDealIDs
     pub provider_sectors: Cid,
 }