| 219 | } |
| 220 | |
| 221 | bytes importByteArray(std::string const& _str) |
| 222 | { |
| 223 | return fromHex(_str.substr(0, 2) == "0x" ? _str.substr(2) : _str, WhenError::Throw); |
| 224 | } |
| 225 | |
| 226 | bytes importData(json_spirit::mObject const& _o) |
| 227 | { |
no outgoing calls
no test coverage detected