Skip to content

Commit

Permalink
add variable to test linter CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiTimesChi committed Sep 24, 2024
1 parent eba4372 commit 0629309
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/contracts-rfq/contracts/FastBridgeV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ contract FastBridgeV2 is Admin, IFastBridgeV2 {
uint256 public nonce;
// @dev the block the contract was deployed at
uint256 public immutable deployBlock;
// TODO: remove this
uint256 public IncorrectlyNamedVariable;

Check warning

Code scanning / Slither

Conformance to Solidity naming conventions Warning

Variable FastBridgeV2.IncorrectlyNamedVariable is not in mixedCase

Check warning

Code scanning / Slither

State variables that could be declared constant Warning


constructor(address _owner) Admin(_owner) {
deployBlock = block.number;
Expand Down

0 comments on commit 0629309

Please sign in to comment.