diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2024-07-08 11:11:58 +0200 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2024-07-08 11:12:01 +0200 |
commit | 3333bae9b2a6c1ee2314d33361c93944c12001f9 (patch) | |
tree | 8c4e936cacd9df2c1290210a4642e5a587034400 /src/wallet/walletutil.h | |
parent | bd5d1688b4311e21c0e0ff89a3ae02ef7d0543b8 (diff) |
tidy: modernize-use-equals-default
Diffstat (limited to 'src/wallet/walletutil.h')
-rw-r--r-- | src/wallet/walletutil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/walletutil.h b/src/wallet/walletutil.h index 38926c1eb8..96cb35b926 100644 --- a/src/wallet/walletutil.h +++ b/src/wallet/walletutil.h @@ -111,7 +111,7 @@ public: SER_READ(obj, obj.DeserializeDescriptor(descriptor_str)); } - WalletDescriptor() {} + WalletDescriptor() = default; WalletDescriptor(std::shared_ptr<Descriptor> descriptor, uint64_t creation_time, int32_t range_start, int32_t range_end, int32_t next_index) : descriptor(descriptor), id(DescriptorID(*descriptor)), creation_time(creation_time), range_start(range_start), range_end(range_end), next_index(next_index) { } }; |