Guest User

Untitled

a guest
Dec 11th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. contractIns.uintField(function(err, result){
  2. if(err){
  3. //error
  4. } else {
  5. //the data is in result.c[0];
  6. }
  7. });
  8.  
  9. contractIns.addressField(function(err, result) {
  10. if(err){
  11. //error
  12. } else {
  13. //the result is the data itself
  14. }
  15. });
Add Comment
Please, Sign In to add comment