aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/notifications_interface.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/kernel/notifications_interface.h
parentbd5d1688b4311e21c0e0ff89a3ae02ef7d0543b8 (diff)
downloadbitcoin-3333bae9b2a6c1ee2314d33361c93944c12001f9.tar.xz
tidy: modernize-use-equals-default
Diffstat (limited to 'src/kernel/notifications_interface.h')
-rw-r--r--src/kernel/notifications_interface.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/notifications_interface.h b/src/kernel/notifications_interface.h
index 8e090dd7db..ef72d9bdb6 100644
--- a/src/kernel/notifications_interface.h
+++ b/src/kernel/notifications_interface.h
@@ -35,7 +35,7 @@ bool IsInterrupted(const T& result)
class Notifications
{
public:
- virtual ~Notifications(){};
+ virtual ~Notifications() = default;
[[nodiscard]] virtual InterruptResult blockTip(SynchronizationState state, CBlockIndex& index) { return {}; }
virtual void headerTip(SynchronizationState state, int64_t height, int64_t timestamp, bool presync) {}