File tree Expand file tree Collapse file tree 5 files changed +10
-6
lines changed
Expand file tree Collapse file tree 5 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ import "../interfaces/IOwnable.sol";
1010// TODO clean this (use LibDiamond)
1111// - All calls to `owner()` should use `LibDiamond.contractOwner()`.
1212
13+ /**
14+ * @title Base contract of all Facet contracts.
15+ * @dev Every facet must inherit from this contract.
16+ */
1317abstract contract FacetBase is Store {
1418 modifier onlyOwner () {
1519 require (_msgSender () == owner (), "Ownable: caller is not the owner " );
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ import {Store} from "../Store.v8.sol";
1212
1313/**
1414 * @title Base contract of all Facet contracts.
15- * @dev Every module must inherit from this contract.
15+ * @dev Every facet must inherit from this contract.
1616 */
1717abstract contract FacetBase is Store {
1818 modifier onlyOwner () {
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import {IexecPocoCommonFacet} from "./IexecPocoCommonFacet.sol";
1111import {SignatureVerifier} from "./SignatureVerifier.v8.sol " ;
1212
1313/**
14- * @title Getters contract for PoCo module .
14+ * @title Getters contract for PoCo facets .
1515 */
1616contract IexecPocoAccessorsFacet is
1717 IexecPocoAccessors ,
@@ -25,7 +25,7 @@ contract IexecPocoAccessorsFacet is
2525 using IexecLibOrders_v5 for IexecLibOrders_v5.RequestOrder;
2626
2727 /**
28- * Get a deal created by PoCo module .
28+ * Get a deal created by PoCo classic facet .
2929 * @param id The ID of the deal.
3030 */
3131 function viewDeal (bytes32 id ) external view returns (IexecLibCore_v5.Deal memory deal ) {
Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ import {FacetBase} from "./FacetBase.v8.sol";
88import {IexecPocoBoostAccessors} from "../interfaces/IexecPocoBoostAccessors.sol " ;
99
1010/**
11- * @title Getters contract for PoCo Boost module .
11+ * @title Getters contract for PoCo Boost facet .
1212 * @notice Access to PoCo Boost tasks must be done with PoCo Classic `IexecAccessors`.
1313 */
1414contract IexecPocoBoostAccessorsFacet is IexecPocoBoostAccessors , FacetBase {
1515 /**
16- * Get a deal created by PoCo Boost module .
16+ * Get a deal created by PoCo Boost facet .
1717 * @param id The ID of the deal.
1818 */
1919 function viewDealBoost (
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ pragma solidity ^0.8.0;
66import {IexecLibOrders_v5} from "../libs/IexecLibOrders_v5.sol " ;
77
88/**
9- * @title Interface definition of the PoCo Boost module .
9+ * @title Interface definition of the PoCo Boost facet .
1010 */
1111interface IexecPocoBoost {
1212 /**
You can’t perform that action at this time.
0 commit comments