Guest User

Untitled

a guest
May 25th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. CDataStream ds(SER_NETWORK, PROTOCOL_VERSION);
  2. ( (CBlockHeader*) &genesis )->Serialize(ds);
  3.  
  4. for(CDataStream::const_iterator it = ds.begin(); it != ds.end(); ++it) {
  5. fprintf(stdout, "%02x", 0x00FF & *it);
  6. }
  7. fprintf(stdout, "\n");
  8. exit(1);
Add Comment
Please, Sign In to add comment