We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2b526a commit d3a13cbCopy full SHA for d3a13cb
packages/subgraph-service/test/subgraphService/SubgraphService.t.sol
@@ -278,7 +278,7 @@ contract SubgraphServiceTest is SubgraphServiceSharedTest {
278
bytes memory _data
279
) private returns (uint256 paymentCollected) {
280
IGraphTallyCollector.SignedRAV memory signedRav = abi.decode(_data, (IGraphTallyCollector.SignedRAV));
281
- address allocationId = address(uint160(uint256(_signedRav.rav.collectionId)));
+ address allocationId = address(uint160(uint256(signedRav.rav.collectionId)));
282
Allocation.State memory allocation = subgraphService.getAllocation(allocationId);
283
bytes32 subgraphDeploymentId = allocation.subgraphDeploymentId;
284
0 commit comments