mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-18 13:17:55 +02:00
Merge ec79b5f86b into merged_master (Bitcoin PR #18782)
This commit is contained in:
commit
5a58efd0a5
2 changed files with 5 additions and 5 deletions
|
|
@ -504,7 +504,7 @@ private:
|
|||
int32_t m_max_cached_index = -1;
|
||||
|
||||
OutputType m_address_type;
|
||||
bool m_internal;
|
||||
bool m_internal = false;
|
||||
|
||||
KeyMap m_map_keys GUARDED_BY(cs_desc_man);
|
||||
CryptedKeyMap m_map_crypted_keys GUARDED_BY(cs_desc_man);
|
||||
|
|
|
|||
|
|
@ -92,10 +92,10 @@ class WalletDescriptor
|
|||
{
|
||||
public:
|
||||
std::shared_ptr<Descriptor> descriptor;
|
||||
uint64_t creation_time;
|
||||
int32_t range_start; // First item in range; start of range, inclusive, i.e. [range_start, range_end). This never changes.
|
||||
int32_t range_end; // Item after the last; end of range, exclusive, i.e. [range_start, range_end). This will increment with each TopUp()
|
||||
int32_t next_index; // Position of the next item to generate
|
||||
uint64_t creation_time = 0;
|
||||
int32_t range_start = 0; // First item in range; start of range, inclusive, i.e. [range_start, range_end). This never changes.
|
||||
int32_t range_end = 0; // Item after the last; end of range, exclusive, i.e. [range_start, range_end). This will increment with each TopUp()
|
||||
int32_t next_index = 0; // Position of the next item to generate
|
||||
DescriptorCache cache;
|
||||
|
||||
ADD_SERIALIZE_METHODS;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue