Skip to content

Commit c2ca2b7

Browse files
committed
Update sip-358.md
1 parent a02934f commit c2ca2b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/sips/sip-358.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The specification includes an update the `requiredCredit` function as shown belo
4848
.load(marketId)
4949
.size
5050
.mulDecimal(PerpsPrice.getCurrentPrice(marketId, PerpsPrice.Tolerance.DEFAULT))
51-
.mulDecimal(PerpsMarketConfiguration.load(marketId).lockedOiRatioD3)
51+
.mulDecimal(PerpsMarketConfiguration.load(marketId).lockedOiRatioD18)
5252
.mulDecimal(GlobalPerpsMarketConfiguration.lockedOiMultiple());
5353
}
5454
```
@@ -58,7 +58,7 @@ Incorporating the below function to `GlobalPerpsMarketModule`:
5858
```
5959
function lockedOiMultiple() public view returns (uint256) {
6060
if (liquidationModule.flaggedAccounts.length > 0) {
61-
return lockedOiMultipleD18;
61+
return lockedOiMultipleD3;
6262
} else {
6363
return 1;
6464
}
@@ -81,7 +81,7 @@ Incorporating the below function to `GlobalPerpsMarketModule`:
8181
### Configurable Values (Via SCCP)
8282

8383
<!--Please list all values configurable via SCCP under this implementation.-->
84-
- `lockedOiMultiple` is a configurable value that becomes active when liquidations are being rate limited
84+
- `lockedOiMultipleD3` is a configurable value that becomes active when liquidations are being rate limited
8585

8686

8787
## Copyright

0 commit comments

Comments
 (0)