From 512a80fcec19d7e18cc9c9589b000b20be839041 Mon Sep 17 00:00:00 2001 From: Nazzareno Massari Date: Tue, 23 Nov 2021 23:44:43 +0000 Subject: [PATCH] Fix Lerp `tick` Interface (#61) --- src/dss/LerpAbstract.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dss/LerpAbstract.sol b/src/dss/LerpAbstract.sol index e8e8783..f3f2d33 100644 --- a/src/dss/LerpAbstract.sol +++ b/src/dss/LerpAbstract.sol @@ -10,6 +10,6 @@ interface LerpAbstract { function duration() external view returns (uint256); function done() external view returns (bool); function startTime() external view returns (uint256); - function tick() external; + function tick() external returns (uint256); function ilk() external view returns (bytes32); }