Skip to content

Commit

Permalink
Fix slither for external libraries, remove unused IERC20Token.transfe…
Browse files Browse the repository at this point in the history
  • Loading branch information
grandizzy committed Dec 22, 2023
1 parent 1c0bcc6 commit a8cb563
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/slither.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:

- name: Analyze Libraries
run: |
slither src/libraries/external/.
slither src/libraries/external/
continue-on-error: true
id: libraries-analyzer

Expand Down
6 changes: 0 additions & 6 deletions src/interfaces/pool/IPool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,6 @@ interface IERC20Token {
function balanceOf(address account) external view returns (uint256);
function burn(uint256 amount) external;
function decimals() external view returns (uint8);
function transfer(address to, uint256 amount) external returns (bool);
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}

/// @dev `ERC721` token interface.
Expand Down

0 comments on commit a8cb563

Please sign in to comment.