minor fix

This commit is contained in:
Vaibhav Khanna 2022-04-15 18:35:29 +05:30
parent bec1d6370f
commit b0ed8dc7b9

View File

@ -27,6 +27,6 @@ contract UserModule is Events {
_userBalance[msg.sender] -= amount_;
IERC20(token).safeTransfer(msg.sender, amount_);
event withdrawLog(uint256 amount_);
emit withdrawLog(amount_);
}
}