Skip to content

Commit

Permalink
error correction
Browse files Browse the repository at this point in the history
  • Loading branch information
0xkato committed Aug 19, 2024
1 parent 15f8063 commit 23e36d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/src/FeeContract.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ contract FeeContract is Initializable, OwnableUpgradeable, UUPSUpgradeable {
//
/// @notice max amount allowed to be deposited to prevent fat finger errors
// @TODO confirm this amount with product
uint256 public constant maxDepositAmount = 1 ether;
uint256 public maxDepositAmount = 1 ether;

uint256 public constant minDepositAmount = 0.001 ether;
uint256 public minDepositAmount = 0.001 ether;

// === Errors ===
//
Expand Down

0 comments on commit 23e36d4

Please sign in to comment.