Created
July 22, 2018 10:24
-
-
Save decanus/a0e7e1dce178253518b98fdbb51ee946 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.24; | |
pragma experimental "v0.5.0"; | |
contract Token { | |
function transfer(address to, uint256 amount) public returns (bool) { | |
return; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment