From 9be52113b88e9837bd5be96a1591f63802109eb6 Mon Sep 17 00:00:00 2001 From: stubbsta Date: Thu, 4 Sep 2025 10:00:05 +0200 Subject: [PATCH] remove ownable to clear compiler error --- src/LinearPriceCalculator.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LinearPriceCalculator.sol b/src/LinearPriceCalculator.sol index 70d0664..500fdd8 100644 --- a/src/LinearPriceCalculator.sol +++ b/src/LinearPriceCalculator.sol @@ -15,7 +15,7 @@ contract LinearPriceCalculator is IPriceCalculator, Ownable { /// @notice The price per message per epoch uint256 public pricePerMessagePerEpoch; - constructor(address _token, uint256 _pricePerMessagePerEpoch) Ownable() { + constructor(address _token, uint256 _pricePerMessagePerEpoch) { _setTokenAndPrice(_token, _pricePerMessagePerEpoch); }