Skip to content

Commit 07b115a

Browse files
committed
test: Fix var name for tests
1 parent a2e50b7 commit 07b115a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contracts/pool-templates/y/DepositTemplateY.vy

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def __init__(
4949
_coins: address[N_COINS],
5050
_underlying_coins: address[N_COINS],
5151
_curve: address,
52-
_lp_token: address
52+
_token: address
5353
):
5454
"""
5555
@notice Contract constructor
@@ -58,7 +58,7 @@ def __init__(
5858
@param _coins List of wrapped coin addresses
5959
@param _underlying_coins List of underlying coin addresses
6060
@param _curve Pool address
61-
@param _lp_token Pool LP token address
61+
@param _token Pool LP token address
6262
"""
6363
for i in range(N_COINS):
6464
assert _coins[i] != ZERO_ADDRESS
@@ -91,7 +91,7 @@ def __init__(
9191
self.coins = _coins
9292
self.underlying_coins = _underlying_coins
9393
self.curve = _curve
94-
self.lp_token = _lp_token
94+
self.lp_token = _token
9595

9696

9797
@external

0 commit comments

Comments
 (0)