Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions contracts/contract/node/RocketNodeStaking.sol
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,6 @@ contract RocketNodeStaking is RocketBase, RocketNodeStakingInterface {
return getUint(keccak256(abi.encodePacked("rpl.megapool.unstake.time", _nodeAddress)));
}

/// @notice Returns the timestamp at which a node last unstaked megapool staked RPL
function getNodeUnstakingRpl(address _nodeAddress) public view returns (uint256) {
return getUint(keccak256(abi.encodePacked("rpl.megapool.unstaking.amount", _nodeAddress)));
}

/// @notice Returns the timestamp at which a node last staked RPL
function getNodeRPLStakedTime(address _nodeAddress) override public view returns (uint256) {
return getUint(keccak256(abi.encodePacked("rpl.staked.node.time", _nodeAddress)));
Expand Down