Skip to content

Commit 6009501

Browse files
committed
fix: undoing bytecode changing source change
1 parent 10db8fc commit 6009501

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/contracts/contracts/disputes/DisputeManager.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -515,9 +515,9 @@ contract DisputeManager is DisputeManagerV1Storage, GraphUpgradeable, IDisputeMa
515515
address _fisherman,
516516
uint256 _deposit,
517517
address _allocationID
518-
) private returns (bytes32 disputeID) {
518+
) private returns (bytes32) {
519519
// Create a disputeID
520-
disputeID = keccak256(abi.encodePacked(_allocationID));
520+
bytes32 disputeID = keccak256(abi.encodePacked(_allocationID));
521521

522522
// Only one dispute for an allocationID at a time
523523
require(!isDisputeCreated(disputeID), "Dispute already created");

0 commit comments

Comments
 (0)