Guest User

Untitled

a guest
Mar 21st, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. Struct X {
  2. address owner;
  3. address renter;
  4. }
  5.  
  6. function createX() public {
  7. X storage x;
  8. x.owner = msg.sender;
  9. }
Add Comment
Please, Sign In to add comment