mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-10 10:52:31 -05:00
wallet: Avoid updating ReserveDestination::nIndex
when GetReservedDestination
fails
This commit is contained in:
parent
ba907f96ad
commit
367bb7a80c
1 changed files with 3 additions and 1 deletions
|
@ -2607,8 +2607,10 @@ util::Result<CTxDestination> ReserveDestination::GetReservedDestination(bool int
|
||||||
|
|
||||||
if (nIndex == -1) {
|
if (nIndex == -1) {
|
||||||
CKeyPool keypool;
|
CKeyPool keypool;
|
||||||
auto op_address = m_spk_man->GetReservedDestination(type, internal, nIndex, keypool);
|
int64_t index;
|
||||||
|
auto op_address = m_spk_man->GetReservedDestination(type, internal, index, keypool);
|
||||||
if (!op_address) return op_address;
|
if (!op_address) return op_address;
|
||||||
|
nIndex = index;
|
||||||
address = *op_address;
|
address = *op_address;
|
||||||
fInternal = keypool.fInternal;
|
fInternal = keypool.fInternal;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue