diff options
| author | John Newbery <[email protected]> | 2017-07-12 16:55:28 -0400 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2017-07-12 17:06:15 -0400 |
| commit | fe4fabaf12b74782ea99821ed8108f17e582060d (patch) | |
| tree | ba72abdf42d6c2975788cb5e48d377f22756c00f /src/httpserver.cpp | |
| parent | Merge #10786: Add PR description to merge commit in github-merge.py (diff) | |
| download | discoin-fe4fabaf12b74782ea99821ed8108f17e582060d.tar.xz discoin-fe4fabaf12b74782ea99821ed8108f17e582060d.zip | |
[refactor] move SplitHostPort() into utilstrencodings
This moves SplitHostPort from libbitcoin_common to libbitcoin_util so it
is available to bitcoin-cli.
Diffstat (limited to 'src/httpserver.cpp')
| -rw-r--r-- | src/httpserver.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/httpserver.cpp b/src/httpserver.cpp index 1c53d8d49..290a2efca 100644 --- a/src/httpserver.cpp +++ b/src/httpserver.cpp @@ -7,6 +7,7 @@ #include "chainparamsbase.h" #include "compat.h" #include "util.h" +#include "utilstrencodings.h" #include "netbase.h" #include "rpc/protocol.h" // For HTTP status codes #include "sync.h" |