Skip to content

Commit

Permalink
OUSD reset cleanup (#537)
Browse files Browse the repository at this point in the history
* Remove OUSD reset

* Switch variables back to private to prevent duplicate getters
  • Loading branch information
Tom Linton authored Feb 1, 2021
1 parent b0dd0a7 commit f8989c0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 23 deletions.
20 changes: 0 additions & 20 deletions contracts/contracts/token/OUSDReset.sol

This file was deleted.

6 changes: 3 additions & 3 deletions contracts/contracts/utils/InitializableERC20Detailed.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ contract InitializableERC20Detailed is IERC20 {
// Storage gap to skip storage from prior to OUSD reset
uint256[100] private _____gap;

string public _name;
string public _symbol;
uint8 public _decimals;
string private _name;
string private _symbol;
uint8 private _decimals;

/**
* @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
Expand Down

0 comments on commit f8989c0

Please sign in to comment.