mirror of
https://github.com/status-im/codex-contracts-eth.git
synced 2025-02-25 06:35:39 +00:00
[marketplace] Formatting
This commit is contained in:
parent
6e0dfdf7db
commit
6c52f60381
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user