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

fix: audit report #455

Merged
merged 1 commit into from
Jan 4, 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
4 changes: 2 additions & 2 deletions contracts/BC_fusion/TokenRecoverPortal.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import "./lib/Utils.sol";
/**
* @title TokenRecoverPortal is used to recover the token from BC users.
* @dev This is designed for the BC users to recover the token from TokenHub.
* The BC will chain will stop and generate a merkle tree root after BC-fusion plan was started.
* The BC chain will stop and generate a merkle tree root after BC-fusion plan was started.
* The BC users can recover the token from TokenHub after the merkle tree root is generated.
* For more details, please refer to the BEP-299(https://github.com/bnb-chain/BEPs/pull/299).
*/
Expand Down Expand Up @@ -88,7 +88,7 @@ contract TokenRecoverPortal is System, ReentrancyGuardUpgradeable {
/*----------------- events -----------------*/
// This event is triggered whenever a call to #pause succeeds.
event Paused();
// This event is triggered whenever a call to #pause succeeds.
// This event is triggered whenever a call to #resumed succeeds.
event Resumed();
// This event is triggered whenever a call to #recover succeeds.
event TokenRecoverRequested(bytes32 tokenSymbol, address account, uint256 amount);
Expand Down
Loading