Skip to content

Commit

Permalink
getCustodianStakeForAcceptingEpoch
Browse files Browse the repository at this point in the history
  • Loading branch information
apenzk committed Feb 18, 2025
1 parent 0880086 commit 050b0d1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ contract MCR is Initializable, BaseSettlement, MCRStorage, IMCR {
}

// gets the total stake for the current epoch for a given custodian
function getTotalStakeForAcceptingEpoch(
function getCustodianStakeForAcceptingEpoch(
address custodian
) public view returns (uint256) {
return getCustodianStake(getAcceptingEpoch(), custodian);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ contract MovementStaking is
}

// gets the total stake for the current epoch
function getTotalStakeForAcceptingEpoch(
function getCustodianStakeForAcceptingEpoch(
address domain,
address custodian
) public view returns (uint256) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ interface IMovementStaking {
uint256 epoch,
address custodian
) external view returns (uint256);
function getTotalStakeForAcceptingEpoch(
function getCustodianStakeForAcceptingEpoch(
address domain,
address custodian
) external view returns (uint256);
Expand Down

0 comments on commit 050b0d1

Please sign in to comment.