Note values should be little-endian byte order.

This commit is contained in:
Sean Bowe
2016-05-12 13:19:13 -06:00
parent 032164d5d5
commit 81469bbb83
8 changed files with 129 additions and 10 deletions

9
src/zcash/util.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef __ZCASH_UTIL_H
#define __ZCASH_UTIL_H
#include <vector>
#include <cstdint>
std::vector<unsigned char> convertIntToVectorLE(const uint64_t val_int);
#endif // __ZCASH_UTIL_H