| 31 | } |
| 32 | |
| 33 | Json::Value AdminEth::admin_eth_blockQueueStatus(string const& _session) |
| 34 | { |
| 35 | RPC_ADMIN; |
| 36 | Json::Value ret; |
| 37 | BlockQueueStatus bqs = m_eth.blockQueue().status(); |
| 38 | ret["importing"] = (int)bqs.importing; |
| 39 | ret["verified"] = (int)bqs.verified; |
| 40 | ret["verifying"] = (int)bqs.verifying; |
| 41 | ret["unverified"] = (int)bqs.unverified; |
| 42 | ret["future"] = (int)bqs.future; |
| 43 | ret["unknown"] = (int)bqs.unknown; |
| 44 | ret["bad"] = (int)bqs.bad; |
| 45 | return ret; |
| 46 | } |
| 47 | |
| 48 | bool AdminEth::admin_eth_setAskPrice(string const& _wei, string const& _session) |
| 49 | { |
no test coverage detected