Apply suggestions from code review

This commit is contained in:
Thrilok kumar 2022-09-04 21:31:22 +05:30 committed by GitHub
parent b0724d4d71
commit d82cc069a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,7 +32,7 @@ abstract contract WSTETHContract is Helpers, Basic {
setUint(setId, _wstethAmt);
_eventName = "LogDeposit(uint256,uint256,uint256,uint256)";
_eventParam = abi.encode(_amt, wstethAmt_, getId, setId);
_eventParam = abi.encode(_amt, _wstethAmt, getId, setId);
}
/**
@ -55,7 +55,7 @@ abstract contract WSTETHContract is Helpers, Basic {
setUint(setId, _stethAmt);
_eventName = "LogWithdraw(uint256,uint256,uint256,uint256)";
_eventParam = abi.encode(_amt, stethAmt_, getId, setId);
_eventParam = abi.encode(_amt, _stethAmt, getId, setId);
}
}