// Copyright (c) 2018 The Bitcoin Private developers // Copyright (c) 2016 The Zcash developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_ZCASH_UTIL_H #define BITCOIN_ZCASH_UTIL_H #include #include std::vector convertIntToVectorLE(const uint64_t val_int); std::vector convertBytesVectorToVector(const std::vector& bytes); uint64_t convertVectorToInt(const std::vector& v); #endif // BITCOIN_ZCASH_UTIL_H