Merge pull request #2680 from filecoin-project/asr/over-estimation

Increase PreCommitDeposit and InitialPledgeCollateral overestimation to 1.1x
This commit is contained in:
Whyrusleeping 2020-07-29 17:23:01 -07:00 committed by GitHub
commit 7b567c77e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -920,7 +920,7 @@ func (a *StateAPI) MsigGetAvailableBalance(ctx context.Context, addr address.Add
return types.BigSub(act.Balance, minBalance), nil
}
var initialPledgeNum = types.NewInt(103)
var initialPledgeNum = types.NewInt(110)
var initialPledgeDen = types.NewInt(100)
func (a *StateAPI) StateMinerPreCommitDepositForPower(ctx context.Context, maddr address.Address, pci miner.SectorPreCommitInfo, tsk types.TipSetKey) (types.BigInt, error) {