mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-28 12:07:32 -03:00
4848e71107
-BEGIN VERIFY SCRIPT- sed -i "s/NODISCARD/[[nodiscard]]/g" $(git grep -l "NODISCARD" ":(exclude)src/bench/nanobench.h" ":(exclude)src/attributes.h") -END VERIFY SCRIPT-
19 lines
661 B
C++
19 lines
661 B
C++
// Copyright (c) 2019-2020 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_UTIL_BIP32_H
|
|
#define BITCOIN_UTIL_BIP32_H
|
|
|
|
#include <attributes.h>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
/** Parse an HD keypaths like "m/7/0'/2000". */
|
|
[[nodiscard]] bool ParseHDKeypath(const std::string& keypath_str, std::vector<uint32_t>& keypath);
|
|
|
|
/** Write HD keypaths as strings */
|
|
std::string WriteHDKeypath(const std::vector<uint32_t>& keypath);
|
|
std::string FormatHDKeypath(const std::vector<uint32_t>& path);
|
|
|
|
#endif // BITCOIN_UTIL_BIP32_H
|