db_getHex,从本地数据库返回二进制数据。
请注意,此功能已被弃用,将来会被删除。
参数
- String - 数据库名称.
- String - Key名称.
params: [
"testDB",
"myKey",
]
返回
- DATA - 以前存储的数据。
例子
// Request
curl -X POST --data '{"jsonrpc":"2.0","method":"db_getHex","params":["testDB","myKey"],"id":73}'
// Result
{
"id":1,
"jsonrpc":"2.0",
"result": "0x68656c6c6f20776f726c64"
}