remove ownable to clear compiler error

This commit is contained in:
stubbsta 2025-09-04 10:00:05 +02:00
parent b4508dd0d4
commit 9be52113b8
No known key found for this signature in database

View File

@ -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);
}