File tree 1 file changed +3
-3
lines changed
contracts/pool-templates/y
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ def __init__(
49
49
_coins: address [N_COINS],
50
50
_underlying_coins: address [N_COINS],
51
51
_curve: address ,
52
- _lp_token : address
52
+ _token : address
53
53
):
54
54
"""
55
55
@notice Contract constructor
@@ -58,7 +58,7 @@ def __init__(
58
58
@param _coins List of wrapped coin addresses
59
59
@param _underlying_coins List of underlying coin addresses
60
60
@param _curve Pool address
61
- @param _lp_token Pool LP token address
61
+ @param _token Pool LP token address
62
62
"""
63
63
for i in range (N_COINS):
64
64
assert _coins[i] != ZERO_ADDRESS
@@ -91,7 +91,7 @@ def __init__(
91
91
self .coins = _coins
92
92
self .underlying_coins = _underlying_coins
93
93
self .curve = _curve
94
- self .lp_token = _lp_token
94
+ self .lp_token = _token
95
95
96
96
97
97
@external
You can’t perform that action at this time.
0 commit comments