Skip to content

Commit

Permalink
Fix comment in HATArbitrator
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-kaufman committed Oct 17, 2023
1 parent d10747e commit 5b313e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion contracts/HATArbitrator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,8 @@ contract HATArbitrator is IHATArbitrator, Ownable {
function reclaimBond(IHATClaimsManager _vault, bytes32 _claimId) external {
if (!bondClaimable[msg.sender][_vault][_claimId]) {
// the bond is claimable if either
// (a) it is not part of the curr
// (a) it is not related to the current active claim
// (b) it is about the current active claim but the claim has already expired

IHATClaimsManager.Claim memory claim = _vault.getActiveClaim();

Expand Down

0 comments on commit 5b313e4

Please sign in to comment.