Merge branch 'master' into dev-0.2.0

This commit is contained in:
lash 2022-03-11 06:02:01 +00:00
commit cda642253b
6 changed files with 11 additions and 8 deletions

View File

@ -1,9 +1,11 @@
* 0.0.10-pending * 0.1.10
- Apply transfer ownership protection in GiftableToken contract
* 0.1.9
- Add statictoken contract
* 0.0.10
- Upgrade chainlib dependency, providing customizable jsonrpc id - Upgrade chainlib dependency, providing customizable jsonrpc id
- Move to chainlib-eth - Move to chainlib-eth
* 0.0.9-unreleased * 0.0.7
* 0.0.8-unreleased
* 0.0.7-unreleased
- Implement keystore signing. - Implement keystore signing.
- Change makefile to compile contract for Byzantium. - Change makefile to compile contract for Byzantium.
- Change mint method name to mintTo - Change mint method name to mintTo

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -93,6 +93,7 @@ contract GiftableToken {
// Implements EIP173 // Implements EIP173
function transferOwnership(address _newOwner) public returns (bool) { function transferOwnership(address _newOwner) public returns (bool) {
require(msg.sender == owner);
owner = _newOwner; owner = _newOwner;
} }

File diff suppressed because one or more lines are too long