Merge remote-tracking branch 'origin/testnet/3' into feat/new-workers

This commit is contained in:
Łukasz Magiera 2020-03-19 03:28:55 +01:00
commit dadcfb8101
2 changed files with 4 additions and 4 deletions

View File

@ -90,7 +90,7 @@ func checkSeal(ctx context.Context, maddr address.Address, si SectorInfo, api se
From: maddr, From: maddr,
Value: types.NewInt(0), Value: types.NewInt(0),
GasPrice: types.NewInt(0), GasPrice: types.NewInt(0),
GasLimit: types.NewInt(9999999999), GasLimit: 9999999999,
Method: builtin.MethodsMarket.ComputeDataCommitment, Method: builtin.MethodsMarket.ComputeDataCommitment,
Params: ccparams, Params: ccparams,
} }

View File

@ -122,7 +122,7 @@ func (m *Sealing) handlePreCommitting(ctx statemachine.Context, sector SectorInf
Method: builtin.MethodsMiner.PreCommitSector, Method: builtin.MethodsMiner.PreCommitSector,
Params: enc, Params: enc,
Value: types.NewInt(0), // TODO: need to ensure sufficient collateral Value: types.NewInt(0), // TODO: need to ensure sufficient collateral
GasLimit: types.NewInt(1000000 /* i dont know help */), GasLimit: 1000000, /* i dont know help */
GasPrice: types.NewInt(1), GasPrice: types.NewInt(1),
} }
@ -217,7 +217,7 @@ func (m *Sealing) handleCommitting(ctx statemachine.Context, sector SectorInfo)
Method: builtin.MethodsMiner.ProveCommitSector, Method: builtin.MethodsMiner.ProveCommitSector,
Params: enc, Params: enc,
Value: types.NewInt(0), // TODO: need to ensure sufficient collateral Value: types.NewInt(0), // TODO: need to ensure sufficient collateral
GasLimit: types.NewInt(1000000 /* i dont know help */), GasLimit: 1000000, /* i dont know help */
GasPrice: types.NewInt(1), GasPrice: types.NewInt(1),
} }
@ -283,7 +283,7 @@ func (m *Sealing) handleFaulty(ctx statemachine.Context, sector SectorInfo) erro
Method: builtin.MethodsMiner.DeclareTemporaryFaults, Method: builtin.MethodsMiner.DeclareTemporaryFaults,
Params: enc, Params: enc,
Value: types.NewInt(0), // TODO: need to ensure sufficient collateral Value: types.NewInt(0), // TODO: need to ensure sufficient collateral
GasLimit: types.NewInt(1000000 /* i dont know help */), GasLimit: 1000000, /* i dont know help */
GasPrice: types.NewInt(1), GasPrice: types.NewInt(1),
} }