Skip to content

Commit

Permalink
interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
hujw77 committed Jun 24, 2024
1 parent 42d74a2 commit 6aac784
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import "./interfaces/IOldStakingRewards.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "@openzeppelin/contracts-upgradeable/access/Ownable2StepUpgradeable.sol";

contract RewardsDistribution is Initializable, Ownable2StepUpgradeable {
contract KtonDAOVault is Initializable, Ownable2StepUpgradeable {
// "modlda/trsry" in bytes.
address public constant NOTIFIER = 0x6D6f646c64612f74727372790000000000000000;

Expand Down
2 changes: 1 addition & 1 deletion src/staking/interfaces/IStakingRewards.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ interface IStakingRewards {

// Mutative

function stake(uint256 amount) external;
function stake(uint256 amount, address delegatee) external;

function withdraw(uint256 amount) external;

Expand Down

0 comments on commit 6aac784

Please sign in to comment.