Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade main contract packege, audit fix and make token abstract #9

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: remove unused params from the constructor
duxor committed Dec 11, 2020
commit e4552b51f3747b8bce70088e9c72bc5fe3377e9f
4 changes: 1 addition & 3 deletions contracts/StakingToken.sol
Original file line number Diff line number Diff line change
@@ -32,12 +32,10 @@ abstract contract StakingToken is ERC20, Ownable {
* @notice The constructor for the Staking Token.
* @param _name The name of the token.
* @param _symbol The symbol of the token.
* @param _owner The address to receive all tokens on construction.
*/
constructor(
string memory _name,
string memory _symbol,
address _owner
string memory _symbol
)
public
ERC20(_name, _symbol)