You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: add Transform implementation for PreCommitInfoExtractorV8 (#1242)
* fix: add Transform implementation for PreCommitInfoExtractorV8
* fix: skip diff if same root
* fix: check earlier
* chore: skip when cids are also same in miner
* check root of maps
@@ -114,6 +116,7 @@ var TableLookup = map[string]struct{}{
114
116
MinerSectorInfoV1_6: {},
115
117
MinerSectorPost: {},
116
118
MinerPreCommitInfo: {},
119
+
MinerPreCommitInfoV1_8: {},
117
120
MinerSectorEvent: {},
118
121
MinerCurrentDeadlineInfo: {},
119
122
MinerFeeDebt: {},
@@ -165,6 +168,7 @@ var TableComment = map[string]string{
165
168
MinerSectorInfoV1_6: `MinerSectorInfoV1_6 is exported from the miner actor iff the actor code is less than v7. The table keeps its original name since that's a requirement to support lily backfills`,
166
169
MinerSectorPost: ``,
167
170
MinerPreCommitInfo: ``,
171
+
MinerPreCommitInfoV1_8: `MinerPreCommitInfo using actors v1 to v8.`,
168
172
MinerSectorEvent: ``,
169
173
MinerCurrentDeadlineInfo: ``,
170
174
MinerFeeDebt: ``,
@@ -221,6 +225,7 @@ var TableFieldComments = map[string]map[string]string{
0 commit comments