Skip to content

Commit

Permalink
slither fix
Browse files Browse the repository at this point in the history
  • Loading branch information
thedavidmeister committed Feb 28, 2024
1 parent 3be5179 commit 8b7c7e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/concrete/erc20/FlowERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ contract FlowERC20 is ICloneableV2, IFlowERC20V5, FlowCommon, ERC20 {

/// @dev The evaluable that will be used to evaluate `handleTransfer` on
/// every transfer. This is only set if `sEvalHandleTransfer` is true.
EvaluableV2 internal sEvaluable;
EvaluableV2 internal sEvaluable =
EvaluableV2(IInterpreterV2(address(0)), IInterpreterStoreV2(address(0)), address(0));

/// Overloaded typed initialize function MUST revert with this error.
/// As per `ICloneableV2` interface.
Expand Down
3 changes: 2 additions & 1 deletion src/concrete/erc721/FlowERC721.sol
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@ contract FlowERC721 is ICloneableV2, IFlowERC721V5, FlowCommon, ERC721 {
/// @dev The evaluable that contains the entrypoints for `handleTransfer` and
/// `tokenURI`. This is only set if `sEvalHandleTransfer` or `sEvalTokenURI`
/// is true.
EvaluableV2 internal sEvaluable;
EvaluableV2 internal sEvaluable =
EvaluableV2(IInterpreterV2(address(0)), IInterpreterStoreV2(address(0)), address(0));

/// @dev The base URI for all token URIs. This is set during initialization
/// and cannot be changed. The token URI evaluable can be used for dynamic
Expand Down

0 comments on commit 8b7c7e4

Please sign in to comment.