Skip to content

Commit 5857ca4

Browse files
f: minor cleanup
1 parent 4a72cdc commit 5857ca4

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

packages/subgraph-service/contracts/utilities/Directory.sol

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,30 +77,30 @@ abstract contract Directory {
7777
* @param graphTallyCollector The Graph Tally Collector contract address
7878
* @param curation The Curation contract address
7979
* @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
8181
*/
8282
constructor(
8383
address subgraphService,
8484
address disputeManager,
8585
address graphTallyCollector,
8686
address curation,
8787
address recurringCollector_,
88-
address subgraphServiceExtensionImpl_
88+
address subgraphServiceExtensionImpl
8989
) {
9090
SUBGRAPH_SERVICE = ISubgraphService(subgraphService);
9191
DISPUTE_MANAGER = IDisputeManager(disputeManager);
9292
GRAPH_TALLY_COLLECTOR = IGraphTallyCollector(graphTallyCollector);
9393
CURATION = ICuration(curation);
9494
RECURRING_COLLECTOR = IRecurringCollector(recurringCollector_);
95-
SUBGRAPH_SERVICE_EXTENSION_IMPL = subgraphServiceExtensionImpl_;
95+
SUBGRAPH_SERVICE_EXTENSION_IMPL = subgraphServiceExtensionImpl;
9696

9797
emit SubgraphServiceDirectoryInitialized(
9898
subgraphService,
9999
disputeManager,
100100
graphTallyCollector,
101101
curation,
102102
recurringCollector_,
103-
subgraphServiceExtensionImpl_
103+
subgraphServiceExtensionImpl
104104
);
105105
}
106106

packages/subgraph-service/test/unit/subgraphService/indexing-agreement/integration.t.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,12 @@ pragma solidity 0.8.27;
44
import { IRecurringCollector } from "@graphprotocol/horizon/contracts/interfaces/IRecurringCollector.sol";
55
import { IGraphPayments } from "@graphprotocol/horizon/contracts/interfaces/IGraphPayments.sol";
66
import { PPMMath } from "@graphprotocol/horizon/contracts/libraries/PPMMath.sol";
7+
78
import { IndexingAgreement } from "../../../../contracts/libraries/IndexingAgreement.sol";
89

910
import { SubgraphServiceIndexingAgreementSharedTest } from "./shared.t.sol";
1011

11-
contract SubgraphServiceIndexingAgreementCancelTest is SubgraphServiceIndexingAgreementSharedTest {
12+
contract SubgraphServiceIndexingAgreementIntegrationTest is SubgraphServiceIndexingAgreementSharedTest {
1213
using PPMMath for uint256;
1314

1415
struct TestState {

0 commit comments

Comments
 (0)