From 1cabbddbca615b26aa4510c75f459c28d6fe0afd Mon Sep 17 00:00:00 2001 From: Aaron Hook Date: Sun, 29 Dec 2019 13:04:02 -0800 Subject: refactor: Use uint16_t instead of unsigned short removed trailing whitespace to make linter happy --- src/qt/optionsmodel.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/qt') diff --git a/src/qt/optionsmodel.h b/src/qt/optionsmodel.h index 6ca5ac9d75..14fdf9046e 100644 --- a/src/qt/optionsmodel.h +++ b/src/qt/optionsmodel.h @@ -6,6 +6,7 @@ #define BITCOIN_QT_OPTIONSMODEL_H #include +#include #include #include @@ -15,7 +16,7 @@ class Node; } extern const char *DEFAULT_GUI_PROXY_HOST; -static constexpr unsigned short DEFAULT_GUI_PROXY_PORT = 9050; +static constexpr uint16_t DEFAULT_GUI_PROXY_PORT = 9050; /** * Convert configured prune target MiB to displayed GB. Round up to avoid underestimating max disk usage. -- cgit v1.2.3