chore(RewardsStreamerMP): add Initializable to inheritance

Looks like we've forgotten about this. `Initializable` is imported but
not applied on the contract.
This commit is contained in:
r4bbit
2024-12-03 13:36:16 +01:00
parent 4968ad4ea6
commit df1c67be9f

View File

@@ -9,7 +9,13 @@ import { IStakeManager } from "./interfaces/IStakeManager.sol";
import { TrustedCodehashAccess } from "./TrustedCodehashAccess.sol";
// Rewards Streamer with Multiplier Points
contract RewardsStreamerMP is UUPSUpgradeable, IStakeManager, TrustedCodehashAccess, ReentrancyGuardUpgradeable {
contract RewardsStreamerMP is
Initializable,
UUPSUpgradeable,
IStakeManager,
TrustedCodehashAccess,
ReentrancyGuardUpgradeable
{
error StakingManager__AmountCannotBeZero();
error StakingManager__TransferFailed();
error StakingManager__InsufficientBalance();