aboutsummaryrefslogtreecommitdiff
path: root/src/addrdb.cpp
diff options
context:
space:
mode:
authorJon Atack <jon@atack.com>2023-06-15 15:08:03 -0600
committerJon Atack <jon@atack.com>2023-06-29 16:14:07 -0600
commit6c97757a480b6e71a0750330d69ff18ac7cc6127 (patch)
tree5811b4870f1e3bf9a70364e996eea4ca0f004886 /src/addrdb.cpp
parent1316119ce7ba3de4135bbf1e5ac28c9ea26f62e1 (diff)
script: appease spelling linter
Diffstat (limited to 'src/addrdb.cpp')
-rw-r--r--src/addrdb.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/addrdb.cpp b/src/addrdb.cpp
index cb1c49050e..0fcb5ed5c9 100644
--- a/src/addrdb.cpp
+++ b/src/addrdb.cpp
@@ -210,7 +210,7 @@ util::Result<std::unique_ptr<AddrMan>> LoadAddrman(const NetGroupManager& netgro
return util::Error{strprintf(_("Invalid or corrupt peers.dat (%s). If you believe this is a bug, please report it to %s. As a workaround, you can move the file (%s) out of the way (rename, move, or delete) to have a new one created on the next start."),
e.what(), PACKAGE_BUGREPORT, fs::quoted(fs::PathToString(path_addr)))};
}
- return {std::move(addrman)}; // std::move should be unneccessary but is temporarily needed to work around clang bug
+ return {std::move(addrman)}; // std::move should be unnecessary but is temporarily needed to work around clang bug
// (https://github.com/bitcoin/bitcoin/pull/25977#issuecomment-1561270092)
}