Skip to content
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions contracts/mocks/PolyTokenFaucet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ contract PolyTokenFaucet {
mapping(address => uint256) balances;
mapping(address => mapping(address => uint256)) allowed;

event Transfer(address indexed _from, address indexed _to, uint256 _value);
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);

constructor() public {
decimals = 18;
Expand Down