| 313 | } |
| 314 | |
| 315 | Json::Value Eth::eth_inspectTransaction(std::string const& _rlp) |
| 316 | { |
| 317 | try |
| 318 | { |
| 319 | return toJson(Transaction(jsToBytes(_rlp, OnFailed::Throw), CheckTransaction::Everything)); |
| 320 | } |
| 321 | catch (...) |
| 322 | { |
| 323 | BOOST_THROW_EXCEPTION(JsonRpcException(Errors::ERROR_RPC_INVALID_PARAMS)); |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | string Eth::eth_sendRawTransaction(std::string const& _rlp) |
| 328 | { |
no test coverage detected