We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cca72b commit be26b97Copy full SHA for be26b97
1 file changed
src/periphery/drippie/Drippie.sol
@@ -171,7 +171,7 @@ contract Drippie is AssetReceiver {
171
/// @param _name Drip to check.
172
/// @return True if the drip is executable, reverts otherwise.
173
function executable(string calldata _name) public view returns (bool) {
174
- DripState storage state = drips[_name];
+ DripState memory state = drips[_name];
175
176
// Only allow active drips to be executed, an obvious security measure.
177
require(state.status == DripStatus.ACTIVE, "Drippie: selected drip does not exist or is not currently active");
0 commit comments