File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed
Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ export interface StrategyPayload {
1818 protocolSymbol : string ;
1919
2020 collateralTokens : Array < SupportedToken > ;
21- liquidationTokens : Array < SupportedToken > ;
2221
2322 releaseAt ?: ReleaseAt ;
2423}
@@ -38,14 +37,12 @@ export class Strategy {
3837 readonly releaseAt : ReleaseAt ;
3938
4039 readonly collateralTokens : Array < SupportedToken > ;
41- readonly liquidationTokens : Array < SupportedToken > ;
4240
4341 constructor ( payload : StrategyPayload ) {
4442 this . name = payload . name ;
4543 this . lpTokenSymbol = payload . lpTokenSymbol ;
4644 this . protocolSymbol = payload . protocolSymbol ;
4745 this . collateralTokens = payload . collateralTokens ;
48- this . liquidationTokens = payload . liquidationTokens ;
4946
5047 this . releaseAt = payload . releaseAt ;
5148 }
You can’t perform that action at this time.
0 commit comments