Skip to content

Commit 806eac1

Browse files
Mani BrarMani Brar
authored andcommitted
fix: equal to typo
1 parent 970b424 commit 806eac1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contracts/src/arbitrumToEth/VeaOutboxArbToEth.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ contract VeaOutboxArbToEth is IVeaOutboxOnL1 {
484484
} else {
485485
address challenger = _claim.challenger;
486486
_claim.challenger = address(0);
487-
claimHashes[_epoch] == hashClaim(_claim);
487+
claimHashes[_epoch] = hashClaim(_claim);
488488
payable(challenger).send(deposit); // User is responsible for accepting ETH.
489489
}
490490
}

contracts/src/arbitrumToGnosis/VeaOutboxArbToGnosis.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ contract VeaOutboxArbToGnosis is IVeaOutboxOnL1, ISequencerDelayUpdatable {
428428
} else {
429429
address challenger = _claim.challenger;
430430
_claim.challenger = address(0);
431-
claimHashes[_epoch] == hashClaim(_claim);
431+
claimHashes[_epoch] = hashClaim(_claim);
432432
require(weth.transfer(challenger, deposit), "Failed WETH transfer."); // should revert on errors, but we check return value anyways
433433
}
434434
}

0 commit comments

Comments
 (0)