You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
require(iexecHubInterface.lockForOrder(msg.sender, _value.percentage(ASK_STAKE_RATIO).mul(_volume)));// mul must be done after percentage to avoid rounding errors
64
64
marketorder.workerpool = _workerpool;
65
65
marketorder.workerpoolOwner =msg.sender;
66
66
}
@@ -79,7 +79,7 @@ contract Marketplace is IexecHubAccessor
79
79
if (marketorder.direction == IexecLib.MarketOrderDirectionEnum.ASK)
require(iexecHubInterface.unlockForOrder(marketorder.workerpoolOwner, marketorder.value.percentage(ASK_STAKE_RATIO).mul(marketorder.remaining))); // mul must be done after percentage to avoid rounding errors
83
83
}
84
84
else
85
85
{
@@ -116,7 +116,8 @@ contract Marketplace is IexecHubAccessor
116
116
returntrue;
117
117
}
118
118
119
-
function existingMarketOrder(uint256_marketorderIdx) publicviewreturns (boolmarketOrderExist){
119
+
function existingMarketOrder(uint256_marketorderIdx) publicviewreturns (boolmarketOrderExist)
0 commit comments