diff options
| author | Gavin Andresen <[email protected]> | 2010-11-10 11:45:51 -0500 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2010-11-10 11:45:51 -0500 |
| commit | a0cd439788e30ce4088e2622c11ec88130ab1874 (patch) | |
| tree | 54f3c8dd87ff8ec1306a54d0373c2a618c2c0106 | |
| parent | Merge remote branch 'refs/remotes/svn/trunk' into svn (diff) | |
| parent | Add paytxfee to getinfo output (diff) | |
| download | discoin-a0cd439788e30ce4088e2622c11ec88130ab1874.tar.xz discoin-a0cd439788e30ce4088e2622c11ec88130ab1874.zip | |
Merge remote branch 'refs/remotes/svn/trunk' into svn
| -rw-r--r-- | rpc.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -263,6 +263,7 @@ Value getinfo(const Array& params, bool fHelp) obj.push_back(Pair("hashespersec", gethashespersec(params, false))); obj.push_back(Pair("testnet", fTestNet)); obj.push_back(Pair("keypoololdest", (boost::int64_t)CWalletDB().GetOldestKeyPoolTime())); + obj.push_back(Pair("paytxfee", (double)nTransactionFee / (double)COIN)); obj.push_back(Pair("errors", GetWarnings("statusbar"))); return obj; } |