Last active
May 21, 2019 01:27
-
-
Save blueplanet/b14bc2299f8a944c5285c36d600f2421 to your computer and use it in GitHub Desktop.
Browser Solidityでスマートコントラクトをデプロイする際ハマったこと ref: https://qiita.com/blueplanet/items/d6cd9c9503bb59fb8dda
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.0; | |
contract TestTranster { | |
address public ownerAddress; | |
function TestTranster(address _ownerAddress) public { | |
ownerAddress = _ownerAddress; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment