Skip to content

Commit

Permalink
chore(RewardsStreamerMP): add Initializable to inheritance
Browse files Browse the repository at this point in the history
Looks like we've forgotten about this. `Initializable` is imported but
not applied on the contract.
  • Loading branch information
0x-r4bbit committed Dec 3, 2024
1 parent b1a4e5a commit a0581fe
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/RewardsStreamerMP.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit a0581fe

Please sign in to comment.