There are many places in the Reliquary where function parameters are like pid, positionId, amount etc and sometimes they are _pid, _amount, _positionId. There are also cases where a single function contains mixed conventions in a single line.
function myFunction( uint256 _pid, uint256 positionId)
This PR renames all input parameters with the _ prefix for consistency. All tests pass but please double check my conversions.
Consistent function parameter naming convention
There are many places in the Reliquary where function parameters are like
pid
,positionId
,amount
etc and sometimes they are_pid
,_amount
,_positionId
. There are also cases where a single function contains mixed conventions in a single line.This PR renames all input parameters with the
_
prefix for consistency. All tests pass but please double check my conversions.