Advertisement
Guest User

Untitled

a guest
Jun 20th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. CXX consensus/libbitcoinconsensus_la-merkle.lo
  2. In file included from ./pubkey.h:9:0,
  3. from ./script/script.h:20,
  4. from ./primitives/transaction.h:10,
  5. from consensus/merkle.h:11,
  6. from consensus/merkle.cpp:5:
  7. ./hash.h:49:5: error: ‘CSHA512’ does not name a type
  8. CSHA512 sha;
  9. ^
  10. ./hash.h:52:39: error: ‘CSHA512’ has not been declared
  11. static const size_t OUTPUT_SIZE = CSHA512::OUTPUT_SIZE;
  12. ^
  13. ./hash.h:54:49: error: size of array ‘hash’ is not an integral constant-expression
  14. void Finalize(unsigned char hash[OUTPUT_SIZE])
  15. ^
  16. ./hash.h: In member function ‘void CHash512::Finalize(unsigned char*)’:
  17. ./hash.h:56:27: error: ‘CSHA512’ has not been declared
  18. unsigned char buf[CSHA512::OUTPUT_SIZE];
  19. ^
  20. ./hash.h:57:9: error: ‘sha’ was not declared in this scope
  21. sha.Finalize(buf);
  22. ^
  23. ./hash.h:57:22: error: ‘buf’ was not declared in this scope
  24. sha.Finalize(buf);
  25. ^
  26. ./hash.h:58:32: error: ‘CSHA512’ has not been declared
  27. sha.Reset().Write(buf, CSHA512::OUTPUT_SIZE).Finalize(hash);
  28. ^
  29. ./hash.h: In member function ‘CHash512& CHash512::Write(const unsigned char*, size_t)’:
  30. ./hash.h:63:9: error: ‘sha’ was not declared in this scope
  31. sha.Write(data, len);
  32. ^
  33. ./hash.h: In member function ‘CHash512& CHash512::Reset()’:
  34. ./hash.h:69:9: error: ‘sha’ was not declared in this scope
  35. sha.Reset();
  36. ^
  37. ./hash.h: At global scope:
  38. ./hash.h:100:8: error: ‘uint512’ does not name a type
  39. inline uint512 Hash512(const T1 pbegin, const T1 pend)
  40. ^
  41. In file included from ./pubkey.h:9:0,
  42. from ./script/script.h:20,
  43. from ./primitives/transaction.h:10,
  44. from consensus/merkle.h:11,
  45. from consensus/merkle.cpp:5:
  46. ./hash.h:108:8: error: ‘uint512’ does not name a type
  47. inline uint512 Hash512(const T1 p1begin, const T1 p1end, const T2 p2begin, const T2 p2end)
  48. ^
  49. Makefile:7390: recipe for target 'consensus/libbitcoinconsensus_la-merkle.lo' failed
  50. make[2]: *** [consensus/libbitcoinconsensus_la-merkle.lo] Error 1
  51. make[2]: Leaving directory '/root/verticalcoin/src'
  52. Makefile:7632: recipe for target 'all-recursive' failed
  53. make[1]: *** [all-recursive] Error 1
  54. make[1]: Leaving directory '/root/verticalcoin/src'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement