-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eba4372
commit 0629309
Showing
1 changed file
with
2 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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
FastBridgeV2.IncorrectlyNamedVariable should be constant
|
||
|
||
constructor(address _owner) Admin(_owner) { | ||
deployBlock = block.number; | ||
|