diff options
author | TheCharlatan <seb.kung@gmail.com> | 2023-07-21 14:37:03 +0200 |
---|---|---|
committer | TheCharlatan <seb.kung@gmail.com> | 2023-07-25 17:40:07 +0200 |
commit | 6960c81cbfa6208d4098353e53b313e13a21cb49 (patch) | |
tree | ff176ff287825a64169c92cbb3d73d5eaa3929e7 /src/core_io.h | |
parent | 10eb3a9faa977371facacee937b2e6dc26f008e0 (diff) |
kernel: Remove Univalue from kernel library
It is not required by any of the kernel components.
A JSON library should not need to be part of a consensus library.
Diffstat (limited to 'src/core_io.h')
-rw-r--r-- | src/core_io.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core_io.h b/src/core_io.h index a8c62da3f3..1f5ecbaea6 100644 --- a/src/core_io.h +++ b/src/core_io.h @@ -46,7 +46,6 @@ bool DecodeHexBlockHeader(CBlockHeader&, const std::string& hex_header); * @see ParseHashV for an RPC-oriented version of this */ bool ParseHashStr(const std::string& strHex, uint256& result); -std::vector<unsigned char> ParseHexUV(const UniValue& v, const std::string& strName); [[nodiscard]] util::Result<int> SighashFromStr(const std::string& sighash); // core_write.cpp |