Skip to content

Commit

Permalink
fix: Change erc20 name of aToken imple to refer GHO (#275)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmtzinf authored Feb 3, 2023
1 parent 8267d5e commit dc7fa5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/contracts/facilitators/aave/tokens/GhoAToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ contract GhoAToken is VersionedInitializable, ScaledBalanceTokenBase, EIP712Base
*/
constructor(
IPool pool
) ScaledBalanceTokenBase(pool, 'ATOKEN_IMPL', 'ATOKEN_IMPL', 0) EIP712Base() {
) ScaledBalanceTokenBase(pool, 'GHO_ATOKEN_IMPL', 'GHO_ATOKEN_IMPL', 0) EIP712Base() {
// Intentionally left blank
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ contract GhoVariableDebtToken is DebtTokenBase, ScaledBalanceTokenBase, IGhoVari
IPool pool
)
DebtTokenBase()
ScaledBalanceTokenBase(pool, 'VARIABLE_DEBT_TOKEN_IMPL', 'VARIABLE_DEBT_TOKEN_IMPL', 0)
ScaledBalanceTokenBase(pool, 'GHO_VARIABLE_DEBT_TOKEN_IMPL', 'GHO_VARIABLE_DEBT_TOKEN_IMPL', 0)
{
// Intentionally left blank
}
Expand Down

0 comments on commit dc7fa5c

Please sign in to comment.