diff options
| author | Calvin Kim <[email protected]> | 2020-05-18 17:14:10 +0900 |
|---|---|---|
| committer | Calvin Kim <[email protected]> | 2020-05-22 01:40:31 +0900 |
| commit | c57f03ce1741b38af448bec7b22ab9f8ac21f067 (patch) | |
| tree | fc53ee2ad75995ae01f998dca70574754ee91f7b /src/bitcoin-cli.cpp | |
| parent | Merge #18938: tests: Fill fuzzing coverage gaps for functions in consensus/va... (diff) | |
| download | discoin-c57f03ce1741b38af448bec7b22ab9f8ac21f067.tar.xz discoin-c57f03ce1741b38af448bec7b22ab9f8ac21f067.zip | |
refactor: Replace const char* to std::string
Some functions should be returning std::string instead of const char*.
This commit changes that.
Diffstat (limited to 'src/bitcoin-cli.cpp')
| -rw-r--r-- | src/bitcoin-cli.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bitcoin-cli.cpp b/src/bitcoin-cli.cpp index cdaabd6fa..9bd1959a9 100644 --- a/src/bitcoin-cli.cpp +++ b/src/bitcoin-cli.cpp @@ -20,6 +20,7 @@ #include <functional> #include <memory> #include <stdio.h> +#include <string> #include <tuple> #include <event2/buffer.h> @@ -157,7 +158,7 @@ struct HTTPReply std::string body; }; -static const char *http_errorstring(int code) +static std::string http_errorstring(int code) { switch(code) { #if LIBEVENT_VERSION_NUMBER >= 0x02010300 |