File tree Expand file tree Collapse file tree 1 file changed +0
-18
lines changed
packages/subgraph-service/contracts/libraries Expand file tree Collapse file tree 1 file changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -3,11 +3,9 @@ pragma solidity 0.8.27;
3
3
4
4
import { IGraphPayments } from "@graphprotocol/horizon/contracts/interfaces/IGraphPayments.sol " ;
5
5
import { IRecurringCollector } from "@graphprotocol/horizon/contracts/interfaces/IRecurringCollector.sol " ;
6
- import { GraphDirectory } from "@graphprotocol/horizon/contracts/utilities/GraphDirectory.sol " ;
7
6
8
7
import { ISubgraphService } from "../interfaces/ISubgraphService.sol " ;
9
8
import { AllocationManager } from "../utilities/AllocationManager.sol " ;
10
- import { SubgraphService } from "../SubgraphService.sol " ;
11
9
import { Directory } from "../utilities/Directory.sol " ;
12
10
import { Allocation } from "./Allocation.sol " ;
13
11
import { IndexingAgreementDecoder } from "./IndexingAgreementDecoder.sol " ;
@@ -715,22 +713,6 @@ library IndexingAgreement {
715
713
return Directory (address (this ));
716
714
}
717
715
718
- /**
719
- * @notice Gets the Graph Directory
720
- * @return The Graph Directory contract
721
- */
722
- function _graphDirectory () private view returns (GraphDirectory) {
723
- return GraphDirectory (address (this ));
724
- }
725
-
726
- /**
727
- * @notice Gets the Subgraph Service
728
- * @return The Subgraph Service contract
729
- */
730
- function _subgraphService () private view returns (SubgraphService) {
731
- return SubgraphService (address (this ));
732
- }
733
-
734
716
/**
735
717
* @notice Gets the indexing agreement wrapper for a given agreement ID.
736
718
* @dev This function retrieves the indexing agreement wrapper containing the agreement state and collector agreement data.
You can’t perform that action at this time.
0 commit comments