Guest User

Untitled

a guest
Feb 21st, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. contract Lib {
  2. //Some code
  3. }
  4.  
  5. contract A {
  6.  
  7. Lib someLib;
  8.  
  9. function setLibReference(address libAddress) public {
  10. someLib = Lib(libAddress);
  11. }
  12. }
Add Comment
Please, Sign In to add comment