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

Optimized nonReentrant on ConvexYieldWrapper #358

Merged
merged 2 commits into from
Feb 8, 2022
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
6 changes: 3 additions & 3 deletions contracts/utils/convex/ConvexStakingWrapper.sol
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ contract ConvexStakingWrapper is ERC20, AccessControl {

//management
bool public isShutdown;
bool private _status;
uint8 private _status = 1;

bool private constant _NOT_ENTERED = false;
bool private constant _ENTERED = true;
uint8 private constant _NOT_ENTERED = 1;
uint8 private constant _ENTERED = 2;

event Deposited(address indexed _user, address indexed _account, uint256 _amount, bool _wrapped);
event Withdrawn(address indexed _user, uint256 _amount, bool _unwrapped);
Expand Down