emit transfer in burn

This commit is contained in:
mingda
2020-07-30 01:24:00 +08:00
parent 73866b9d3a
commit 56a1a8fdc7

View File

@@ -129,5 +129,6 @@ contract DODOLpToken is Ownable {
balances[user] = balances[user].sub(value);
totalSupply = totalSupply.sub(value);
emit Burn(user, value);
emit Transfer(user, address(0), value);
}
}