Skip to content
Merged
Show file tree
Hide file tree
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 contracts/chain-adapters/Ethereum_Adapter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
* that call this contract's logic guard against reentrancy.
*/

// solhint-disable-next-linecontract-name-camelcase
// solhint-disable-next-line contract-name-camelcase
contract Ethereum_Adapter is AdapterInterface {
using SafeERC20 for IERC20;

Expand Down
2 changes: 1 addition & 1 deletion contracts/chain-adapters/Optimism_Adapter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
* that call this contract's logic guard against reentrancy.
*/

// solhint-disable-next-linecontract-name-camelcase
// solhint-disable-next-line contract-name-camelcase
contract Optimism_Adapter is CrossDomainEnabled, AdapterInterface {
using SafeERC20 for IERC20;
uint32 public immutable l2GasLimit = 2_000_000;
Expand Down
2 changes: 1 addition & 1 deletion contracts/chain-adapters/Polygon_Adapter.sol
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ interface DepositManager {
* that call this contract's logic guard against reentrancy.
*/

// solhint-disable-next-linecontract-name-camelcase
// solhint-disable-next-line contract-name-camelcase
contract Polygon_Adapter is AdapterInterface {
using SafeERC20 for IERC20;
IRootChainManager public immutable rootChainManager;
Expand Down
2 changes: 1 addition & 1 deletion contracts/test/PolygonMocks.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";

contract RootChainManagerMock {
function depositEtherFor(address user) external payable {}
function depositEtherFor(address user) external payable {} // solhint-disable-line no-empty-blocks

function depositFor(
address user,
Expand Down