Skip to content

Commit d044e0e

Browse files
committed
refactor: Remove override for final overriders
1 parent 1551cea commit d044e0e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/interfaces/chain.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ class RpcHandlerImpl : public Handler
127127
::tableRPC.appendCommand(m_command.name, &m_command);
128128
}
129129

130-
void disconnect() override final
130+
void disconnect() final
131131
{
132132
if (m_wrapped_command) {
133133
m_wrapped_command = nullptr;

src/script/descriptor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ class DescriptorImpl : public Descriptor
481481
return AddChecksum(ret);
482482
}
483483

484-
bool ToPrivateString(const SigningProvider& arg, std::string& out) const override final
484+
bool ToPrivateString(const SigningProvider& arg, std::string& out) const final
485485
{
486486
bool ret = ToStringHelper(&arg, out, true);
487487
out = AddChecksum(out);

0 commit comments

Comments
 (0)