Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2016
426
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. contract StringStorage {
  2. event Transaction(bytes32 indexed hash, address indexed from, address indexed to, uint time, uint amount, string comment);
  3.  
  4. function deposit(address addr, uint amount, bytes32 hash, uint time, string comment) returns (bool res) {
  5. Transaction(hash, tx.origin, addr, time, amount, comment);
  6. return true;
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement