Skip to content

Commit 9e9d644

Browse files
committed
net: fixup nits
1 parent 8945384 commit 9e9d644

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ BITCOIN_CORE_H = \
105105
merkleblock.h \
106106
miner.h \
107107
net.h \
108-
netbase.h \
109108
netaddress.h \
109+
netbase.h \
110110
noui.h \
111111
policy/fees.h \
112112
policy/policy.h \

src/httpserver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ static bool InitHTTPAllowList()
201201
CNetAddr localv6;
202202
LookupHost("127.0.0.1", localv4, false);
203203
LookupHost("::1", localv6, false);
204-
rpc_allow_subnets.push_back(CSubNet(localv4, 8)); // always allow IPv4 local subnet
204+
rpc_allow_subnets.push_back(CSubNet(localv4, 8)); // always allow IPv4 local subnet
205205
rpc_allow_subnets.push_back(CSubNet(localv6)); // always allow IPv6 localhost
206206
if (mapMultiArgs.count("-rpcallowip")) {
207207
const std::vector<std::string>& vAllow = mapMultiArgs["-rpcallowip"];

0 commit comments

Comments
 (0)