Skip to content

Commit

Permalink
Change order of events as well
Browse files Browse the repository at this point in the history
Co-authored-by: sunbreak1211 <129470872+sunbreak1211@users.noreply.github.com>
  • Loading branch information
oldchili and sunbreak1211 authored Dec 20, 2023
1 parent 233c8cc commit e9e3849
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LockstakeEngine.sol
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ contract LockstakeEngine is Multicall {
event Hope(address indexed urn, address indexed usr);
event Nope(address indexed urn, address indexed usr);
event Delegate(address indexed urn, address indexed delegate);
event LockNgt(address indexed urn, uint256 ngtWad);
event Lock(address indexed urn, uint256 wad);
event FreeNgt(address indexed urn, address indexed to, uint256 ngtWad, uint256 burn);
event LockNgt(address indexed urn, uint256 ngtWad);
event Free(address indexed urn, address indexed to, uint256 wad, uint256 burn);
event FreeNgt(address indexed urn, address indexed to, uint256 ngtWad, uint256 burn);
event Draw(address indexed urn, uint256 wad);
event Wipe(address indexed urn, uint256 wad);
event SelectFarm(address indexed urn, address farm);
Expand Down

0 comments on commit e9e3849

Please sign in to comment.