Add a method to add a pubkey to the keypool
Introduces AddKeypoolPubkey in order to add a pubkey to the keypool
This commit is contained in:
parent
8d0ec74801
commit
99cccb900b
2 changed files with 26 additions and 13 deletions
|
@ -3443,20 +3443,8 @@ bool CWallet::TopUpKeyPool(unsigned int kpSize)
|
||||||
internal = true;
|
internal = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
assert(m_max_keypool_index < std::numeric_limits<int64_t>::max()); // How in the hell did you use so many keys?
|
|
||||||
int64_t index = ++m_max_keypool_index;
|
|
||||||
|
|
||||||
CPubKey pubkey(GenerateNewKey(batch, internal));
|
CPubKey pubkey(GenerateNewKey(batch, internal));
|
||||||
if (!batch.WritePool(index, CKeyPool(pubkey, internal))) {
|
AddKeypoolPubkeyWithDB(pubkey, internal, batch);
|
||||||
throw std::runtime_error(std::string(__func__) + ": writing generated key failed");
|
|
||||||
}
|
|
||||||
|
|
||||||
if (internal) {
|
|
||||||
setInternalKeyPool.insert(index);
|
|
||||||
} else {
|
|
||||||
setExternalKeyPool.insert(index);
|
|
||||||
}
|
|
||||||
m_pool_key_to_index[pubkey.GetID()] = index;
|
|
||||||
}
|
}
|
||||||
if (missingInternal + missingExternal > 0) {
|
if (missingInternal + missingExternal > 0) {
|
||||||
WalletLogPrintf("keypool added %d keys (%d internal), size=%u (%u internal)\n", missingInternal + missingExternal, missingInternal, setInternalKeyPool.size() + setExternalKeyPool.size() + set_pre_split_keypool.size(), setInternalKeyPool.size());
|
WalletLogPrintf("keypool added %d keys (%d internal), size=%u (%u internal)\n", missingInternal + missingExternal, missingInternal, setInternalKeyPool.size() + setExternalKeyPool.size() + set_pre_split_keypool.size(), setInternalKeyPool.size());
|
||||||
|
@ -3466,6 +3454,29 @@ bool CWallet::TopUpKeyPool(unsigned int kpSize)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CWallet::AddKeypoolPubkey(const CPubKey& pubkey, const bool internal)
|
||||||
|
{
|
||||||
|
WalletBatch batch(*database);
|
||||||
|
AddKeypoolPubkeyWithDB(pubkey, internal, batch);
|
||||||
|
NotifyCanGetAddressesChanged();
|
||||||
|
}
|
||||||
|
|
||||||
|
void CWallet::AddKeypoolPubkeyWithDB(const CPubKey& pubkey, const bool internal, WalletBatch& batch)
|
||||||
|
{
|
||||||
|
LOCK(cs_wallet);
|
||||||
|
assert(m_max_keypool_index < std::numeric_limits<int64_t>::max()); // How in the hell did you use so many keys?
|
||||||
|
int64_t index = ++m_max_keypool_index;
|
||||||
|
if (!batch.WritePool(index, CKeyPool(pubkey, internal))) {
|
||||||
|
throw std::runtime_error(std::string(__func__) + ": writing imported pubkey failed");
|
||||||
|
}
|
||||||
|
if (internal) {
|
||||||
|
setInternalKeyPool.insert(index);
|
||||||
|
} else {
|
||||||
|
setExternalKeyPool.insert(index);
|
||||||
|
}
|
||||||
|
m_pool_key_to_index[pubkey.GetID()] = index;
|
||||||
|
}
|
||||||
|
|
||||||
bool CWallet::ReserveKeyFromKeyPool(int64_t& nIndex, CKeyPool& keypool, bool fRequestedInternal)
|
bool CWallet::ReserveKeyFromKeyPool(int64_t& nIndex, CKeyPool& keypool, bool fRequestedInternal)
|
||||||
{
|
{
|
||||||
nIndex = -1;
|
nIndex = -1;
|
||||||
|
|
|
@ -1001,6 +1001,8 @@ public:
|
||||||
bool NewKeyPool();
|
bool NewKeyPool();
|
||||||
size_t KeypoolCountExternalKeys() EXCLUSIVE_LOCKS_REQUIRED(cs_wallet);
|
size_t KeypoolCountExternalKeys() EXCLUSIVE_LOCKS_REQUIRED(cs_wallet);
|
||||||
bool TopUpKeyPool(unsigned int kpSize = 0);
|
bool TopUpKeyPool(unsigned int kpSize = 0);
|
||||||
|
void AddKeypoolPubkey(const CPubKey& pubkey, const bool internal);
|
||||||
|
void AddKeypoolPubkeyWithDB(const CPubKey& pubkey, const bool internal, WalletBatch& batch);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Reserves a key from the keypool and sets nIndex to its index
|
* Reserves a key from the keypool and sets nIndex to its index
|
||||||
|
|
Loading…
Reference in a new issue