Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. contract SimpleStorage {
  2. bytes input;
  3. function setInput(bytes enterBytes){
  4. input = enterBytes;
  5. }
  6. }
  7.  
  8. contract SimpleStorage {
  9. bytes2 input;
  10. function setInput(bytes2 enterBytes){
  11. input = enterBytes;
  12. }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement