diff --git a/packages/subgraph-service/contracts/SubgraphService.sol b/packages/subgraph-service/contracts/SubgraphService.sol index 0de750631..909aa7750 100644 --- a/packages/subgraph-service/contracts/SubgraphService.sol +++ b/packages/subgraph-service/contracts/SubgraphService.sol @@ -28,6 +28,7 @@ import { ProvisionManager } from "@graphprotocol/horizon/contracts/data-service/ contract SubgraphService is Initializable, OwnableUpgradeable, + ProvisionManager, DataService, DataServicePausableUpgradeable, DataServiceFees, @@ -35,8 +36,7 @@ contract SubgraphService is AllocationManager, SubgraphServiceV1Storage, IRewardsIssuer, - ISubgraphService, - ProvisionManager + ISubgraphService { using PPMMath for uint256; using Allocation for mapping(address => Allocation.State);