diff options
| author | Pieter Wuille <[email protected]> | 2012-05-24 19:02:21 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-05-31 18:12:35 +0200 |
| commit | 587f929c6462698a674fe8add2f301161219d05a (patch) | |
| tree | 1a1f3dde2af5e4fe19a66d692df94e8b223560db /src/bitcoinrpc.cpp | |
| parent | Merge pull request #1403 from Diapolo/translation_master_file (diff) | |
| download | discoin-587f929c6462698a674fe8add2f301161219d05a.tar.xz discoin-587f929c6462698a674fe8add2f301161219d05a.zip | |
Rework network config settings
Diffstat (limited to 'src/bitcoinrpc.cpp')
| -rw-r--r-- | src/bitcoinrpc.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/bitcoinrpc.cpp b/src/bitcoinrpc.cpp index 75e3fd6e9..e31022d82 100644 --- a/src/bitcoinrpc.cpp +++ b/src/bitcoinrpc.cpp @@ -531,6 +531,9 @@ Value getinfo(const Array& params, bool fHelp) "getinfo\n" "Returns an object containing various state info."); + CService addrProxy; + GetProxy(NET_IPV4, addrProxy); + Object obj; obj.push_back(Pair("version", (int)CLIENT_VERSION)); obj.push_back(Pair("protocolversion",(int)PROTOCOL_VERSION)); @@ -538,7 +541,7 @@ Value getinfo(const Array& params, bool fHelp) obj.push_back(Pair("balance", ValueFromAmount(pwalletMain->GetBalance()))); obj.push_back(Pair("blocks", (int)nBestHeight)); obj.push_back(Pair("connections", (int)vNodes.size())); - obj.push_back(Pair("proxy", (fUseProxy ? addrProxy.ToStringIPPort() : string()))); + obj.push_back(Pair("proxy", (addrProxy.IsValid() ? addrProxy.ToStringIPPort() : string()))); obj.push_back(Pair("difficulty", (double)GetDifficulty())); obj.push_back(Pair("testnet", fTestNet)); obj.push_back(Pair("keypoololdest", (boost::int64_t)pwalletMain->GetOldestKeyPoolTime())); |