Skip to content

Commit

Permalink
Merge pull request #1099 from ipfs-force-community/fix/wrong-snapup-s…
Browse files Browse the repository at this point in the history
…ender

fix: incorrect sender address in snapup
  • Loading branch information
simlecode authored Aug 26, 2024
2 parents 729aa6e + 896e4b4 commit be12ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion damocles-manager/modules/impl/sectors/snapup_commit.go
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ func (h *snapupCommitHandler) submitMessage() error {
return fmt.Errorf("snapup disabled")
}

sender, err := h.committer.senderSelector.Select(h.committer.ctx, h.state.ID.Miner, mcfg.PoSt.GetSenders())
sender, err := h.committer.senderSelector.Select(h.committer.ctx, h.state.ID.Miner, mcfg.SnapUp.GetSenders())
if err != nil {
return fmt.Errorf("select sender for %d: %w", h.state.ID.Miner, err)
}
Expand Down

0 comments on commit be12ead

Please sign in to comment.