We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 747a3ed commit a2909feCopy full SHA for a2909fe
actors/miner/src/notifications.rs
@@ -58,15 +58,6 @@ pub fn notify_data_consumers(
58
}
59
60
for (notifee, payloads) in activations_by_notifee {
61
- // Reject notifications to any actor other than the built-in market.
62
- if notifee != STORAGE_MARKET_ACTOR_ADDR {
63
- if require_success {
64
- return Err(
65
- actor_error!(illegal_argument; "disallowed notification receiver: {}", notifee),
66
- );
67
- }
68
- continue;
69
70
let sectors_changes: Vec<SectorChanges> = payloads
71
.into_iter()
72
.map(|(sector_number, pieces)| SectorChanges {
0 commit comments