Guest User

Untitled

a guest
Jun 18th, 2018
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. from bitstring import BitArray
  2. import ctypes
  3.  
  4. library_name = "librai_lib.dylib"
  5. librai = ctypes.CDLL(library_name)
  6.  
  7. print("Calculating PoW")
  8.  
  9. work = librai.xrb_work(b"FC5A7FB777110A858052468D448B2DF22B648943C097C0608D1E2341007438B0")
  10.  
  11. print(work)
  12. print(hex(work))
Add Comment
Please, Sign In to add comment