acceptsToken
Contract: JBSingleTokenPaymentTerminal
Interface: IJBPaymentTerminal
- Step by step
 - Code
 - Bug bounty
 
A flag indicating if this terminal accepts the specified token.
Definition
function acceptsToken(address _token, uint256 _projectId) external view override returns (bool) { ... }
- Arguments:
_tokenis the token to check if this terminal accepts or not._projectIdis the project ID to check for token acceptance.
 - The view function can be accessed externally by anyone.
 - The view function does not alter state on the blockchain.
 - The resulting function overrides a function definition from the 
IJBPaymentTerminalinterface. - The function returns the flag.
 
Body
- 
In order for this terminal to accept a token, it must match the single token that this terminal is for.
return _token == token; 
/**
  @notice
  A flag indicating if this terminal accepts the specified token.
  @param _token The token to check if this terminal accepts or not.
  @param _projectId The project ID to check for token acceptance.
  @return The flag.
*/
function acceptsToken(address _token, uint256 _projectId) external view override returns (bool) {
  _projectId; // Prevents unused var compiler and natspec complaints.
  return _token == token;
}
| Category | Description | Reward | 
|---|---|---|
| Optimization | Help make this operation more efficient. | 0.5ETH | 
| Low severity | Identify a vulnerability in this operation that could lead to an inconvenience for a user of the protocol or for a protocol developer. | 1ETH | 
| High severity | Identify a vulnerability in this operation that could lead to data corruption or loss of funds. | 5+ETH |