Skip to content

Commit

Permalink
fix: use immutable
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-manuel committed Nov 13, 2023
1 parent 24d642b commit 43ebac1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/SparkLendFreezerMom.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ contract SparkLendFreezerMom is ISparkLendFreezerMom {
/*** Declarations and Constructor ***/
/**********************************************************************************************/

address public override immutable poolConfigurator;
address public override immutable pool;
address public immutable override poolConfigurator;
address public immutable override pool;

address public override authority;
address public override owner;
Expand Down
4 changes: 2 additions & 2 deletions src/spells/EmergencySpell_SparkLend_FreezeSingleAsset.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import { ISparkLendFreezerMom } from "src/interfaces/ISparkLendFreezerMom.sol";

contract EmergencySpell_SparkLend_FreezeSingleAsset {

address public sparkLendFreezer;
address public reserve;
address public immutable sparkLendFreezer;
address public immutable reserve;

constructor(address sparklendFreezer_, address reserve_) {
sparkLendFreezer = sparklendFreezer_;
Expand Down

0 comments on commit 43ebac1

Please sign in to comment.