Skip to content

Commit

Permalink
Merge pull request #3702 from filecoin-project/steb/remove-hard-coded…
Browse files Browse the repository at this point in the history
…-late-fee

Remove hard-coded late-fee in window PoSt
  • Loading branch information
magik6k committed Sep 9, 2020
2 parents a2f1e76 + afa913f commit 311d20e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storage/wdpost_run.go
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ func (s *WindowPoStScheduler) submitPost(ctx context.Context, proof *miner.Submi
From: s.worker,
Method: builtin.MethodsMiner.SubmitWindowedPoSt,
Params: enc,
Value: types.NewInt(1000), // currently hard-coded late fee in actor, returned if not late
Value: types.NewInt(0),
}
spec := &api.MessageSendSpec{MaxFee: abi.TokenAmount(s.feeCfg.MaxWindowPoStGasFee)}
s.setSender(ctx, msg, spec)
Expand Down

0 comments on commit 311d20e

Please sign in to comment.