diff options
author | Vasil Dimov <vd@FreeBSD.org> | 2021-11-08 17:34:32 +0100 |
---|---|---|
committer | Vasil Dimov <vd@FreeBSD.org> | 2021-11-24 12:44:07 +0100 |
commit | 0eea83a85ec6b215d44facc2b16ee1b035275a6b (patch) | |
tree | e6eecb49bd83112cb2b0147f681f65ba88ea9ea2 /src/rpc | |
parent | e53a8505dbb6f9deaae8ac82793a4fb760a1e0a6 (diff) |
scripted-diff: rename `proxyType` to `Proxy`
-BEGIN VERIFY SCRIPT-
sed -i 's/\<proxyType\>/Proxy/g' $(git grep -l proxyType)
-END VERIFY SCRIPT-
Diffstat (limited to 'src/rpc')
-rw-r--r-- | src/rpc/net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rpc/net.cpp b/src/rpc/net.cpp index e33f1ce4a3..6e7d9ab0af 100644 --- a/src/rpc/net.cpp +++ b/src/rpc/net.cpp @@ -567,7 +567,7 @@ static UniValue GetNetworksInfo() for (int n = 0; n < NET_MAX; ++n) { enum Network network = static_cast<enum Network>(n); if (network == NET_UNROUTABLE || network == NET_INTERNAL) continue; - proxyType proxy; + Proxy proxy; UniValue obj(UniValue::VOBJ); GetProxy(network, proxy); obj.pushKV("name", GetNetworkName(network)); |