Skip to content

Commit

Permalink
chore: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
DragonDmoney committed Nov 26, 2024
1 parent 4257131 commit 4a28edf
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions script/Main.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ contract Move is ERC20 {
}
}


function deployAll(address move, address bridge, address gov) returns (Lock lock, fstMOVE fstmove) {
Lock lock_ = new Lock();
lock = Lock(address(new TransparentUpgradeableProxy(address(lock_), gov, "")));
Expand Down Expand Up @@ -42,7 +41,7 @@ contract DeployScript is Script {
bridge = new NativeBridge(address(move));

(Lock lock, fstMOVE fstmove) = deployAll(address(move), address(bridge), gov);

console.log("Move: ", address(move));
console.log("fstmove: ", address(fstmove));
console.log("Bridge: ", address(bridge));
Expand Down
3 changes: 1 addition & 2 deletions src/Lock.sol
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,7 @@ contract Lock is Initializable, OwnableUpgradeable {
frozen = status;
}


function setMoveBridge(address bridge_) public onlyOwner {
movementBridge = NativeBridge(bridge_);
}
}
}
2 changes: 1 addition & 1 deletion src/token/fstMOVE.sol
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ contract fstMOVE is IERC20, IERC20Metadata, IERC20Errors, AccessControlDefaultAd
lastShareRate = BASE;
nextShareRate = BASE;

maxAprThreshold = 35*10**6;
maxAprThreshold = 35 * 10 ** 6;
}

/**
Expand Down

0 comments on commit 4a28edf

Please sign in to comment.