[marketplace] Formatting

This commit is contained in:
Mark Spanbroek 2022-11-23 15:11:24 +01:00 committed by markspanbroek
parent 6e0dfdf7db
commit 6c52f60381
2 changed files with 16 additions and 6 deletions

View File

@ -35,7 +35,11 @@ contract Storage is Collateral, Marketplace {
minCollateralThreshold = _minCollateralThreshold; minCollateralThreshold = _minCollateralThreshold;
} }
function getRequest(RequestId requestId) public view returns (Request memory) { function getRequest(RequestId requestId)
public
view
returns (Request memory)
{
return _request(requestId); return _request(requestId);
} }

View File

@ -12,7 +12,13 @@ contract TestMarketplace is Marketplace {
uint256 _proofTimeout, uint256 _proofTimeout,
uint8 _proofDowntime uint8 _proofDowntime
) )
Marketplace(_token, _collateral, _proofPeriod,_proofTimeout,_proofDowntime) Marketplace(
_token,
_collateral,
_proofPeriod,
_proofTimeout,
_proofDowntime
)
// solhint-disable-next-line no-empty-blocks // solhint-disable-next-line no-empty-blocks
{ {