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/interfaces | |
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/interfaces')
-rw-r--r-- | src/interfaces/node.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/node.h b/src/interfaces/node.h index 974156e6e1..f1205c0c3c 100644 --- a/src/interfaces/node.h +++ b/src/interfaces/node.h @@ -28,7 +28,7 @@ class CNodeStats; class Coin; class RPCTimerInterface; class UniValue; -class proxyType; +class Proxy; enum class SynchronizationState; enum class TransactionError; struct CNodeStateStats; @@ -97,7 +97,7 @@ public: virtual void mapPort(bool use_upnp, bool use_natpmp) = 0; //! Get proxy. - virtual bool getProxy(Network net, proxyType& proxy_info) = 0; + virtual bool getProxy(Network net, Proxy& proxy_info) = 0; //! Get number of connections. virtual size_t getNodeCount(ConnectionDirection flags) = 0; |