Skip to content

Commit

Permalink
fix: correct SettlementPostInteractionData.isExclusivityPeriod method
Browse files Browse the repository at this point in the history
  • Loading branch information
vbrvk committed Jun 6, 2024
1 parent 82ec9bb commit 795b8a4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ export class SettlementPostInteractionData {
return false
}

return time <= this.resolvingStartTime + this.whitelist[0].delay
return time <= this.resolvingStartTime + this.whitelist[1].delay
}

public isExclusiveResolver(wallet: Address): boolean {
Expand Down

0 comments on commit 795b8a4

Please sign in to comment.