File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
packages/subgraph-service
test/unit/subgraphService/indexing-agreement Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -77,30 +77,30 @@ abstract contract Directory {
77
77
* @param graphTallyCollector The Graph Tally Collector contract address
78
78
* @param curation The Curation contract address
79
79
* @param recurringCollector_ The Recurring Collector contract address
80
- * @param subgraphServiceExtensionImpl_ The Subgraph Service Extension contract address
80
+ * @param subgraphServiceExtensionImpl The Subgraph Service Extension contract address
81
81
*/
82
82
constructor (
83
83
address subgraphService ,
84
84
address disputeManager ,
85
85
address graphTallyCollector ,
86
86
address curation ,
87
87
address recurringCollector_ ,
88
- address subgraphServiceExtensionImpl_
88
+ address subgraphServiceExtensionImpl
89
89
) {
90
90
SUBGRAPH_SERVICE = ISubgraphService (subgraphService);
91
91
DISPUTE_MANAGER = IDisputeManager (disputeManager);
92
92
GRAPH_TALLY_COLLECTOR = IGraphTallyCollector (graphTallyCollector);
93
93
CURATION = ICuration (curation);
94
94
RECURRING_COLLECTOR = IRecurringCollector (recurringCollector_);
95
- SUBGRAPH_SERVICE_EXTENSION_IMPL = subgraphServiceExtensionImpl_ ;
95
+ SUBGRAPH_SERVICE_EXTENSION_IMPL = subgraphServiceExtensionImpl ;
96
96
97
97
emit SubgraphServiceDirectoryInitialized (
98
98
subgraphService,
99
99
disputeManager,
100
100
graphTallyCollector,
101
101
curation,
102
102
recurringCollector_,
103
- subgraphServiceExtensionImpl_
103
+ subgraphServiceExtensionImpl
104
104
);
105
105
}
106
106
Original file line number Diff line number Diff line change @@ -4,11 +4,12 @@ pragma solidity 0.8.27;
4
4
import { IRecurringCollector } from "@graphprotocol/horizon/contracts/interfaces/IRecurringCollector.sol " ;
5
5
import { IGraphPayments } from "@graphprotocol/horizon/contracts/interfaces/IGraphPayments.sol " ;
6
6
import { PPMMath } from "@graphprotocol/horizon/contracts/libraries/PPMMath.sol " ;
7
+
7
8
import { IndexingAgreement } from "../../../../contracts/libraries/IndexingAgreement.sol " ;
8
9
9
10
import { SubgraphServiceIndexingAgreementSharedTest } from "./shared.t.sol " ;
10
11
11
- contract SubgraphServiceIndexingAgreementCancelTest is SubgraphServiceIndexingAgreementSharedTest {
12
+ contract SubgraphServiceIndexingAgreementIntegrationTest is SubgraphServiceIndexingAgreementSharedTest {
12
13
using PPMMath for uint256 ;
13
14
14
15
struct TestState {
You can’t perform that action at this time.
0 commit comments