Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix comment in HATArbitrator #533

Merged
merged 2 commits into from
Oct 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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