aboutsummaryrefslogtreecommitdiff
path: root/src/rest.cpp
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2024-10-26 13:27:25 +0100
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2024-10-28 12:36:19 +0000
commit70713303b6399e0627c1960da4fbab48f9cf71e7 (patch)
treef73a0c0ee5f53fa1759138a138e4d3de550c0edb /src/rest.cpp
parent332655cb52c8f8ef64b29b09e38ef5d61235ed21 (diff)
scripted-diff: Rename `PACKAGE_*` variables to `CLIENT_*`
This change ensures consistent use of the `CLIENT_` namespace everywhere in the repository. -BEGIN VERIFY SCRIPT- ren() { sed -i "s/\<$1\>/$2/g" $( git grep -l "$1" ./cmake ./src :\(exclude\)./src/secp256k1 ./test ) ; } ren PACKAGE_NAME CLIENT_NAME ren PACKAGE_VERSION CLIENT_VERSION_STRING ren PACKAGE_URL CLIENT_URL ren PACKAGE_BUGREPORT CLIENT_BUGREPORT -END VERIFY SCRIPT-
Diffstat (limited to 'src/rest.cpp')
-rw-r--r--src/rest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rest.cpp b/src/rest.cpp
index 9b282dc484..3e4b8b37c6 100644
--- a/src/rest.cpp
+++ b/src/rest.cpp
@@ -90,7 +90,7 @@ static NodeContext* GetNodeContext(const std::any& context, HTTPRequest* req)
strprintf("%s:%d (%s)\n"
"Internal bug detected: Node context not found!\n"
"You may report this issue here: %s\n",
- __FILE__, __LINE__, __func__, PACKAGE_BUGREPORT));
+ __FILE__, __LINE__, __func__, CLIENT_BUGREPORT));
return nullptr;
}
return node_context;
@@ -128,7 +128,7 @@ static ChainstateManager* GetChainman(const std::any& context, HTTPRequest* req)
strprintf("%s:%d (%s)\n"
"Internal bug detected: Chainman disabled or instance not found!\n"
"You may report this issue here: %s\n",
- __FILE__, __LINE__, __func__, PACKAGE_BUGREPORT));
+ __FILE__, __LINE__, __func__, CLIENT_BUGREPORT));
return nullptr;
}
return node_context->chainman.get();