未验证 提交 fa95fac7 编写于 作者: K Kevin Heifner 提交者: GitHub

Merge pull request #4564 from EOSIO/set-abi-missing-param

abi_serializer is still using the old definition
......@@ -306,7 +306,7 @@ public:
uint64_t scope = convert_to_type<uint64_t>(p.scope, "scope");
abi_serializer abis;
abis.set_abi(abi);
abis.set_abi(abi, abi_serializer_max_time);
bool primary = false;
const uint64_t table_with_index = get_table_index_name(p, primary);
const auto* t_id = d.find<chain::table_id_object, chain::by_code_scope_table>(boost::make_tuple(p.code, scope, p.table));
......@@ -352,7 +352,7 @@ public:
copy_inline_row(*itr2, data);
if (p.json) {
result.rows.emplace_back(abis.binary_to_variant(abis.get_table_type(p.table), data));
result.rows.emplace_back(abis.binary_to_variant(abis.get_table_type(p.table), data, abi_serializer_max_time));
} else {
result.rows.emplace_back(fc::variant(data));
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册