Guest User

Untitled

a guest
Jun 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. pragma solidity ^0.4.24;
  2. contract Vote {
  3. address public uName;
  4.  
  5. constructor(address name)public {
  6. uName = name;
  7. }
  8.  
  9. }
Add Comment
Please, Sign In to add comment