diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2022-09-20 15:26:35 +0100 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2022-09-27 23:04:37 +0100 |
commit | b147322a7a387423164de5a7d91a33eacad51689 (patch) | |
tree | 2bb72ea76d7723315c94591310d8010474975379 /src/init.cpp | |
parent | 80d159813306fa4137afd35e280e14568bf94f0e (diff) |
Use `PACKAGE_NAME` in messages rather than hardcoding "Bitcoin Core"
Diffstat (limited to 'src/init.cpp')
-rw-r--r-- | src/init.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init.cpp b/src/init.cpp index 25b40c6c6e..e00ea50f6c 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1663,7 +1663,7 @@ bool AppInitMain(NodeContext& node, interfaces::BlockAndHeaderTipInfo* tip_info) const auto BadPortWarning = [](const char* prefix, uint16_t port) { return strprintf(_("%s request to listen on port %u. This port is considered \"bad\" and " - "thus it is unlikely that any Bitcoin Core peers connect to it. See " + "thus it is unlikely that any peer will connect to it. See " "doc/p2p-bad-ports.md for details and a full list."), prefix, port); |