mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-11-28 23:08:52 +01:00
Implement TopUp in DescriptorScriptPubKeyMan
This commit is contained in:
@@ -219,6 +219,11 @@ struct CExtPubKey {
|
||||
a.pubkey == b.pubkey;
|
||||
}
|
||||
|
||||
friend bool operator!=(const CExtPubKey &a, const CExtPubKey &b)
|
||||
{
|
||||
return !(a == b);
|
||||
}
|
||||
|
||||
void Encode(unsigned char code[BIP32_EXTKEY_SIZE]) const;
|
||||
void Decode(const unsigned char code[BIP32_EXTKEY_SIZE]);
|
||||
bool Derive(CExtPubKey& out, unsigned int nChild) const;
|
||||
|
||||
Reference in New Issue
Block a user