Skip to content
Open
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
2 changes: 1 addition & 1 deletion src/periphery/drippie/Drippie.sol
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ contract Drippie is AssetReceiver {
/// @param _name Drip to check.
/// @return True if the drip is executable, reverts otherwise.
function executable(string calldata _name) public view returns (bool) {
DripState storage state = drips[_name];
DripState memory state = drips[_name];

// Only allow active drips to be executed, an obvious security measure.
require(state.status == DripStatus.ACTIVE, "Drippie: selected drip does not exist or is not currently active");
Expand Down