Skip to content

Commit

Permalink
fix: missing closing braket.
Browse files Browse the repository at this point in the history
  • Loading branch information
MoonBoi9001 committed Sep 20, 2024
1 parent 3a79539 commit 95e0945
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ library LegacyAllocation {
address allocationId,
bytes32 subgraphDeploymentId
) internal {
require(!self[allocationId].exists(), LegacyAllocationAlreadyMigrated(allocationId);
require(!self[allocationId].exists(), LegacyAllocationAlreadyMigrated(allocationId));

State memory allocation = State({ indexer: indexer, subgraphDeploymentId: subgraphDeploymentId });
self[allocationId] = allocation;
Expand Down

0 comments on commit 95e0945

Please sign in to comment.