Bitcoin ABC 0.30.5
P2P Digital Currency
|
#include <chainparams.h>
#include <common/args.h>
#include <config.h>
#include <key_io.h>
#include <logging.h>
#include <outputtype.h>
#include <script/descriptor.h>
#include <script/sign.h>
#include <util/bip32.h>
#include <util/strencodings.h>
#include <util/string.h>
#include <util/translation.h>
#include <wallet/scriptpubkeyman.h>
Go to the source code of this file.
Typedefs | |
typedef std::vector< uint8_t > | valtype |
Functions | |
static int64_t | GetOldestKeyTimeInPool (const std::set< int64_t > &setKeyPool, WalletBatch &batch) |
static bool | ExtractPubKey (const CScript &dest, CPubKey &pubKeyOut) |
std::vector< CKeyID > | GetAffectedKeys (const CScript &spk, const SigningProvider &provider) |
Variables | |
const uint32_t | BIP32_HARDENED_KEY_LIMIT = 0x80000000 |
Value for the first BIP 32 hardened derivation. More... | |
typedef std::vector<uint8_t> valtype |
Definition at line 41 of file scriptpubkeyman.cpp.
Definition at line 814 of file scriptpubkeyman.cpp.
std::vector< CKeyID > GetAffectedKeys | ( | const CScript & | spk, |
const SigningProvider & | provider | ||
) |
Definition at line 1455 of file scriptpubkeyman.cpp.
|
static |
Definition at line 468 of file scriptpubkeyman.cpp.
const uint32_t BIP32_HARDENED_KEY_LIMIT = 0x80000000 |
Value for the first BIP 32 hardened derivation.
Can be used as a bit mask and as a value. See BIP 32 for more details.
Definition at line 21 of file scriptpubkeyman.cpp.