Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Correct designator order for field of get_table_rows_params #7989

Merged
merged 1 commit into from
Sep 25, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/get_table_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -517,10 +517,10 @@ BOOST_FIXTURE_TEST_CASE( get_table_next_key_test, TESTER ) try {

chain_apis::read_only plugin(*(this->control), fc::microseconds::maximum());
chain_apis::read_only::get_table_rows_params params{
.json=true,
.code=N(test),
.scope="test",
.limit=1,
.json=true
.limit=1
};

params.table = N(numobjs);
Expand Down