Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update SponsorshipProgram.sol #12

Merged
merged 2 commits into from
Jun 27, 2024
Merged
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
14 changes: 10 additions & 4 deletions backend/contracts/SponsorshipProgram.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ contract SponsorshipProgram {
address public owner;
uint256 public estimatedCost;

event EstimatedCostUpdated(uint256 amount);
event OwnerUpdated(address owner);
event EstimatedCostUpdated(uint256 estimatedCost);

error OnlyOwner();

Expand All @@ -24,8 +25,13 @@ contract SponsorshipProgram {
estimatedCost = _estimatedCost;
}

function updateEstimatedCost(uint256 amount) public onlyOwner {
estimatedCost = amount;
emit EstimatedCostUpdated(amount);
function updateOwner(address _owner) public onlyOwner() {
owner = _owner;
emit OwnerUpdated(_owner);
}

function updateEstimatedCost(uint256 _estimatedCost) public onlyOwner {
estimatedCost = _estimatedCost;
emit EstimatedCostUpdated(_estimatedCost);
}
}
Loading