mirror of
https://github.com/vacp2p/staking-reward-streamer.git
synced 2026-01-09 21:18:01 -05:00
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user