Skip to content

Commit fd2e505

Browse files
committed
call ma_time instead of ma_half_time'
1 parent 7cabdbc commit fd2e505

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/main/CurveTwocryptoFactoryHandler.vy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ interface CurvePool:
2929
def fee_gamma() -> uint256: view
3030
def gamma() -> uint256: view
3131
def get_virtual_price() -> uint256: view
32-
def ma_half_time() -> uint256: view
32+
def ma_time() -> uint256: view
3333
def mid_fee() -> uint256: view
3434
def out_fee() -> uint256: view
3535
def virtual_price() -> uint256: view
@@ -390,7 +390,7 @@ def get_pool_params(_pool: address) -> uint256[20]:
390390
pool_params[3] = CurvePool(_pool).allowed_extra_profit()
391391
pool_params[4] = CurvePool(_pool).fee_gamma()
392392
pool_params[5] = CurvePool(_pool).adjustment_step()
393-
pool_params[6] = CurvePool(_pool).ma_half_time()
393+
pool_params[6] = CurvePool(_pool).ma_time()
394394
return pool_params
395395

396396

0 commit comments

Comments
 (0)