@@ -658,15 +658,15 @@ contract AllocationManager is
658658 function getOperatorSetCount (
659659 address
660660 ) external view returns (uint256 count ) {
661- _delegateView (secondHalf );
661+ _delegateView (viewImplementation );
662662 count;
663663 }
664664
665665 /// @inheritdoc IAllocationManagerView
666666 function getAllocatedSets (
667667 address
668668 ) external view returns (OperatorSet[] memory operatorSets ) {
669- _delegateView (secondHalf );
669+ _delegateView (viewImplementation );
670670 operatorSets;
671671 }
672672
@@ -675,7 +675,7 @@ contract AllocationManager is
675675 address ,
676676 OperatorSet memory
677677 ) external view returns (IStrategy[] memory strategies ) {
678- _delegateView (secondHalf );
678+ _delegateView (viewImplementation );
679679 strategies;
680680 }
681681
@@ -685,7 +685,7 @@ contract AllocationManager is
685685 OperatorSet memory ,
686686 IStrategy
687687 ) external view returns (Allocation memory allocation ) {
688- _delegateView (secondHalf );
688+ _delegateView (viewImplementation );
689689 allocation;
690690 }
691691
@@ -695,7 +695,7 @@ contract AllocationManager is
695695 OperatorSet memory ,
696696 IStrategy
697697 ) external view returns (Allocation[] memory allocations ) {
698- _delegateView (secondHalf );
698+ _delegateView (viewImplementation );
699699 allocations;
700700 }
701701
@@ -704,38 +704,38 @@ contract AllocationManager is
704704 address ,
705705 IStrategy
706706 ) external view returns (OperatorSet[] memory operatorSets , Allocation[] memory allocations ) {
707- _delegateView (secondHalf );
707+ _delegateView (viewImplementation );
708708 operatorSets;
709709 allocations;
710710 }
711711
712712 /// @inheritdoc IAllocationManagerView
713713 function getEncumberedMagnitude (address , IStrategy) external view returns (uint64 encumberedMagnitude ) {
714- _delegateView (secondHalf );
714+ _delegateView (viewImplementation );
715715 encumberedMagnitude;
716716 }
717717
718718 /// @inheritdoc IAllocationManagerView
719719 function getAllocatableMagnitude (address , IStrategy) external view returns (uint64 allocatableMagnitude ) {
720- _delegateView (secondHalf );
720+ _delegateView (viewImplementation );
721721 allocatableMagnitude;
722722 }
723723
724724 /// @inheritdoc IAllocationManagerView
725725 function getMaxMagnitude (address , IStrategy) external view returns (uint64 maxMagnitude ) {
726- _delegateView (secondHalf );
726+ _delegateView (viewImplementation );
727727 maxMagnitude;
728728 }
729729
730730 /// @inheritdoc IAllocationManagerView
731731 function getMaxMagnitudes (address , IStrategy[] calldata ) external view returns (uint64 [] memory maxMagnitudes ) {
732- _delegateView (secondHalf );
732+ _delegateView (viewImplementation );
733733 maxMagnitudes;
734734 }
735735
736736 /// @inheritdoc IAllocationManagerView
737737 function getMaxMagnitudes (address [] calldata , IStrategy) external view returns (uint64 [] memory maxMagnitudes ) {
738- _delegateView (secondHalf );
738+ _delegateView (viewImplementation );
739739 maxMagnitudes;
740740 }
741741
@@ -745,7 +745,7 @@ contract AllocationManager is
745745 IStrategy[] calldata ,
746746 uint32
747747 ) external view returns (uint64 [] memory maxMagnitudes ) {
748- _delegateView (secondHalf );
748+ _delegateView (viewImplementation );
749749 maxMagnitudes;
750750 }
751751
@@ -771,37 +771,37 @@ contract AllocationManager is
771771 function getRegisteredSets (
772772 address
773773 ) external view returns (OperatorSet[] memory operatorSets ) {
774- _delegateView (secondHalf );
774+ _delegateView (viewImplementation );
775775 operatorSets;
776776 }
777777
778778 /// @inheritdoc IAllocationManagerView
779779 function isMemberOfOperatorSet (address , OperatorSet memory ) external view returns (bool result ) {
780- _delegateView (secondHalf );
780+ _delegateView (viewImplementation );
781781 result;
782782 }
783783
784784 /// @inheritdoc IAllocationManagerView
785785 function isOperatorSet (
786786 OperatorSet memory
787787 ) external view returns (bool result ) {
788- _delegateView (secondHalf );
788+ _delegateView (viewImplementation );
789789 result;
790790 }
791791
792792 /// @inheritdoc IAllocationManagerView
793793 function getMembers (
794794 OperatorSet memory
795795 ) external view returns (address [] memory operators ) {
796- _delegateView (secondHalf );
796+ _delegateView (viewImplementation );
797797 operators;
798798 }
799799
800800 /// @inheritdoc IAllocationManagerView
801801 function getMemberCount (
802802 OperatorSet memory
803803 ) external view returns (uint256 memberCount ) {
804- _delegateView (secondHalf );
804+ _delegateView (viewImplementation );
805805 memberCount;
806806 }
807807
@@ -818,7 +818,7 @@ contract AllocationManager is
818818 function getStrategiesInOperatorSet (
819819 OperatorSet memory
820820 ) external view returns (IStrategy[] memory strategies ) {
821- _delegateView (secondHalf );
821+ _delegateView (viewImplementation );
822822 strategies;
823823 }
824824
@@ -829,7 +829,7 @@ contract AllocationManager is
829829 IStrategy[] memory ,
830830 uint32
831831 ) external view returns (uint256 [][] memory slashableStake ) {
832- _delegateView (secondHalf );
832+ _delegateView (viewImplementation );
833833 slashableStake;
834834 }
835835
@@ -839,7 +839,7 @@ contract AllocationManager is
839839 address [] memory ,
840840 IStrategy[] memory
841841 ) external view returns (uint256 [][] memory slashableStake ) {
842- _delegateView (secondHalf );
842+ _delegateView (viewImplementation );
843843 slashableStake;
844844 }
845845
@@ -872,15 +872,15 @@ contract AllocationManager is
872872 function getSlashCount (
873873 OperatorSet memory
874874 ) external view returns (uint256 slashCount ) {
875- _delegateView (secondHalf );
875+ _delegateView (viewImplementation );
876876 slashCount;
877877 }
878878
879879 /// @inheritdoc IAllocationManagerView
880880 function isOperatorRedistributable (
881881 address
882882 ) external view returns (bool result ) {
883- _delegateView (secondHalf );
883+ _delegateView (viewImplementation );
884884 result;
885885 }
886886}
0 commit comments