Skip to content

Commit

Permalink
Fix comment typo and correct log
Browse files Browse the repository at this point in the history
  • Loading branch information
kanewallmann committed Sep 10, 2024
1 parent 8579b08 commit 6f07f2a
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 @@ -38,7 +38,7 @@ contract RocketDAOProtocolVerifier is RocketBase, RocketDAOProtocolVerifierInter
uint256 constant internal sumOffset = 1;
uint256 constant internal hashOffset = 2;

// Burn address
// Burn rate
uint256 constant internal bondBurnPercent = 0.2 ether;

// Events
Expand Down
2 changes: 1 addition & 1 deletion contracts/contract/minipool/RocketMinipoolDelegate.sol
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ contract RocketMinipoolDelegate is RocketMinipoolStorageLayout, RocketMinipoolIn
uint256 userCapital = getUserDepositBalance();
rocketDepositPool.recycleDissolvedDeposit{value : userCapital + _penalty}();
// Emit ether withdrawn event
emit EtherWithdrawn(address(rocketDepositPool), userCapital, block.timestamp);
emit EtherWithdrawn(address(rocketDepositPool), userCapital + _penalty, block.timestamp);
}
}
}
Expand Down

0 comments on commit 6f07f2a

Please sign in to comment.