File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ The specification includes an update the `requiredCredit` function as shown belo
48
48
.load(marketId)
49
49
.size
50
50
.mulDecimal(PerpsPrice.getCurrentPrice(marketId, PerpsPrice.Tolerance.DEFAULT))
51
- .mulDecimal(PerpsMarketConfiguration.load(marketId).lockedOiRatioD3 )
51
+ .mulDecimal(PerpsMarketConfiguration.load(marketId).lockedOiRatioD18 )
52
52
.mulDecimal(GlobalPerpsMarketConfiguration.lockedOiMultiple());
53
53
}
54
54
```
@@ -58,7 +58,7 @@ Incorporating the below function to `GlobalPerpsMarketModule`:
58
58
```
59
59
function lockedOiMultiple() public view returns (uint256) {
60
60
if (liquidationModule.flaggedAccounts.length > 0) {
61
- return lockedOiMultipleD18 ;
61
+ return lockedOiMultipleD3 ;
62
62
} else {
63
63
return 1;
64
64
}
@@ -81,7 +81,7 @@ Incorporating the below function to `GlobalPerpsMarketModule`:
81
81
### Configurable Values (Via SCCP)
82
82
83
83
<!-- 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
85
85
86
86
87
87
## Copyright
You can’t perform that action at this time.
0 commit comments