Skip to content

Commit

Permalink
make extradata public
Browse files Browse the repository at this point in the history
  • Loading branch information
gpsanant committed Sep 23, 2024
1 parent ffd4fc7 commit b2e9276
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/contracts/core/StakeRootCompendiumStorage.sol
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ abstract contract StakeRootCompendiumStorage is IStakeRootCompendium, OwnableUpg
/// @notice deposit balance to be deducted for operatorSets
mapping(address => mapping(uint32 => DepositInfo)) public depositInfos;

Check failure

Code scanning / Slither

Uninitialized state variables High

/// @notice the extraData for each operatorSet
mapping(address => mapping(uint32 => bytes32)) internal operatorSetExtraDatas;
mapping(address => mapping(uint32 => bytes32)) public operatorSetExtraDatas;
/// @notice map from operator set to a trace of their index over time
mapping(address => mapping(uint32 => Snapshots.History)) internal operatorSetToIndex;
/// @notice the extraData for each operator in each operator set
mapping(address => mapping(uint32 => mapping(address => bytes32))) internal operatorExtraDatas;
mapping(address => mapping(uint32 => mapping(address => bytes32))) public operatorExtraDatas;
/// @notice the strategies and multipliers for each operator set
mapping(address => mapping(uint32 => EnumerableMap.AddressToUintMap)) internal operatorSetToStrategyAndMultipliers;

Expand Down

0 comments on commit b2e9276

Please sign in to comment.