diff --git a/tests/tests/history_api_tests.cpp b/tests/tests/history_api_tests.cpp index 53e426ca6c..e8856fda28 100644 --- a/tests/tests/history_api_tests.cpp +++ b/tests/tests/history_api_tests.cpp @@ -46,7 +46,6 @@ BOOST_AUTO_TEST_CASE(get_account_history) { create_account("dan"); create_account("bob"); - generate_block(); fc::usleep(fc::milliseconds(2000)); @@ -66,7 +65,6 @@ BOOST_AUTO_TEST_CASE(get_account_history) { BOOST_CHECK(histories[0].id.instance() != 0); BOOST_CHECK_EQUAL(histories[0].op.which(), account_create_op_id); - // Limit 2 returns 2 result histories = hist_api.get_account_history("1.2.0", operation_history_id_type(), 2, operation_history_id_type()); BOOST_CHECK_EQUAL(histories.size(), 2u); @@ -77,7 +75,6 @@ BOOST_AUTO_TEST_CASE(get_account_history) { BOOST_CHECK_EQUAL(histories.size(), 1u); BOOST_CHECK_EQUAL(histories[0].op.which(), account_create_op_id); - } catch (fc::exception &e) { edump((e.to_detail_string())); throw;