Skip to content
This repository has been archived by the owner on Jun 6, 2023. It is now read-only.

fixing 1516 (oneliner) #1517

Merged
merged 1 commit into from
Oct 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion actors/builtin/market/market_actor.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@ func (a Actor) PublishStorageDeals(rt Runtime, params *PublishStorageDealsParams
// We should randomize the first epoch for when the deal will be processed so an attacker isn't able to
// schedule too many deals for the same tick.
processEpoch := GenRandNextEpoch(deal.Proposal.StartEpoch, id)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to generate random process epoch")

err = msm.dealsByEpoch.Put(processEpoch, id)
builtin.RequireNoErr(rt, err, exitcode.ErrIllegalState, "failed to set deal ops by epoch")
Expand Down