Skip to content

Commit

Permalink
fix: addresses Issue 128/129 (#131)
Browse files Browse the repository at this point in the history
* fix: addresses Issue 128

* fix: addresses #129
  • Loading branch information
codenamejason committed Jul 28, 2023
1 parent 770bce0 commit 3a3bd8f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ contract DirectGrantsSimpleStrategy is BaseStrategy, ReentrancyGuard {
/// ===============================

error RECIPIENT_ALREADY_ACCEPTED();
error INVALID_RECIPIENT();
error UNAUTHORIZED();
error INVALID_MILESTONE();
error MILESTONE_ALREADY_ACCEPTED();
Expand Down Expand Up @@ -106,7 +105,7 @@ contract DirectGrantsSimpleStrategy is BaseStrategy, ReentrancyGuard {
) internal {
__BaseStrategy_init(_poolId);
registryGating = _registryGating;
_metadataRequired = _metadataRequired;
metadataRequired = _metadataRequired;
grantAmountRequired = _grantAmountRequired;
_setPoolActive(true);
}
Expand Down

0 comments on commit 3a3bd8f

Please sign in to comment.