|
|
@ -228,14 +228,9 @@ byte toByte(json_spirit::mValue const& _v) |
|
|
|
return 0; |
|
|
|
} |
|
|
|
|
|
|
|
bytes importByteArray(const std::string& str) |
|
|
|
bytes importByteArray(std::string const& _str) |
|
|
|
{ |
|
|
|
bytes data; |
|
|
|
if (str.find_first_of("0x") == 0) |
|
|
|
data = fromHex(str.substr(2)); |
|
|
|
else |
|
|
|
data = fromHex(str); |
|
|
|
return data; |
|
|
|
return fromHex(_str.substr(0, 2) == "0x" ? _str.substr(2) : _str); |
|
|
|
} |
|
|
|
|
|
|
|
bytes importData(json_spirit::mObject& _o) |
|
|
@ -246,7 +241,6 @@ bytes importData(json_spirit::mObject& _o) |
|
|
|
else |
|
|
|
for (auto const& j: _o["data"].get_array()) |
|
|
|
data.push_back(toByte(j)); |
|
|
|
|
|
|
|
return data; |
|
|
|
} |
|
|
|
|
|
|
|