Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKurt committed Apr 19, 2024
1 parent 784b7f8 commit 47d666d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/strategies/DirectGrantsLiteStrategy/DirectGrantsLite.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,14 @@ export class DirectGrantsLiteStrategy {
private checkPoolId(): void {
if (this.poolId === BigInt(-1))
throw new Error(
"DonationVotingMerkleDistributionStrategy: No poolId provided. Please call `setPoolId` first.",
"DirectGrantsLiteStrategy: No poolId provided. Please call `setPoolId` first.",
);
}

private checkStrategy(): void {
if (!this.strategy)
throw new Error(
"DonationVotingMerkleDistributionStrategy: No strategy address provided. Please call `setContract` first.",
"DirectGrantsLiteStrategy: No strategy address provided. Please call `setContract` first.",
);
}

Expand Down Expand Up @@ -393,7 +393,7 @@ export class DirectGrantsLiteStrategy {
/**
* Batch register recipients
*
* @param data - Array of RegisterDataDonationVoting
* @param data - Array of RegisterDataDirectGrantsLiteVoting
*
* @returns TransactionData
*/
Expand Down

0 comments on commit 47d666d

Please sign in to comment.