| 124 | } |
| 125 | |
| 126 | DexID GetDexId(const Value &jsonValue) { |
| 127 | return RPC_PARAM::GetUint32(jsonValue); |
| 128 | } |
| 129 | |
| 130 | DexID GetDexId(const Array& params, const size_t index) { |
| 131 | return params.size() > index? GetDexId(params[index]) : DEX_RESERVED_ID; |
no test coverage detected