Skip to content

Commit 73d8708

Browse files
committedFeb 2, 2024
run .prettier after bumping version
1 parent 2693e0b commit 73d8708

File tree

149 files changed

+2180
-2746
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+2180
-2746
lines changed
 

‎contracts/connectors/loantoken/LoanToken.sol

+7-7
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ contract LoanToken is AdvancedTokenStorage {
7373
let ptr := mload(0x40)
7474
returndatacopy(ptr, 0, size)
7575
switch result
76-
case 0 {
77-
revert(ptr, size)
78-
}
79-
default {
80-
return(ptr, size)
81-
}
76+
case 0 {
77+
revert(ptr, size)
78+
}
79+
default {
80+
return(ptr, size)
81+
}
8282
}
8383
}
8484

@@ -140,6 +140,6 @@ contract LoanToken is AdvancedTokenStorage {
140140
symbol = _symbol;
141141
decimals = IERC20(loanTokenAddress).decimals();
142142

143-
initialPrice = 10**18; /// starting price of 1
143+
initialPrice = 10 ** 18; /// starting price of 1
144144
}
145145
}

‎contracts/connectors/loantoken/LoanTokenBase.sol

+3-3
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ import "../../reentrancy/SharedReentrancyGuard.sol";
3737
* use the BZRX tokens, which are only used to pay fees on the network currently.
3838
* */
3939
contract LoanTokenBase is ReentrancyGuard, SharedReentrancyGuard, Ownable, Pausable {
40-
uint256 internal constant WEI_PRECISION = 10**18;
41-
uint256 internal constant WEI_PERCENT_PRECISION = 10**20;
40+
uint256 internal constant WEI_PRECISION = 10 ** 18;
41+
uint256 internal constant WEI_PERCENT_PRECISION = 10 ** 20;
4242

43-
int256 internal constant sWEI_PRECISION = 10**18;
43+
int256 internal constant sWEI_PRECISION = 10 ** 18;
4444

4545
/// @notice Standard ERC-20 properties
4646
string public name;

0 commit comments

Comments
 (0)
Please sign in to comment.