Add visibility to constructor

This commit is contained in:
nolash 2020-12-06 17:39:47 +01:00
parent eb2b89b13e
commit 84852e1a03
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -18,7 +18,7 @@ contract GiftableToken {
event TransferFrom(address indexed _from, address indexed _to, address indexed _spender, uint256 _value);
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
constructor(string memory _name, string memory _symbol, uint8 _decimals) {
constructor(string memory _name, string memory _symbol, uint8 _decimals) public {
owner = msg.sender;
name = _name;
symbol = _symbol;