aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/walletutil.h
diff options
context:
space:
mode:
authorMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2024-07-08 11:11:58 +0200
committerMarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz>2024-07-08 11:12:01 +0200
commit3333bae9b2a6c1ee2314d33361c93944c12001f9 (patch)
tree8c4e936cacd9df2c1290210a4642e5a587034400 /src/wallet/walletutil.h
parentbd5d1688b4311e21c0e0ff89a3ae02ef7d0543b8 (diff)
tidy: modernize-use-equals-default
Diffstat (limited to 'src/wallet/walletutil.h')
-rw-r--r--src/wallet/walletutil.h2
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) { }
};