Code formatting

This commit is contained in:
serkixenos 2023-12-14 14:31:08 +01:00
parent cada740d73
commit 2af98fc0fc
2 changed files with 8 additions and 7 deletions

View file

@ -368,7 +368,8 @@ vector<operation_history_object> history_api::get_account_history(const std::str
return _app.elasticsearch_thread->async([&es, &account, &stop, &limit, &start]() { return _app.elasticsearch_thread->async([&es, &account, &stop, &limit, &start]() {
return es->get_account_history(account, stop, limit, start); return es->get_account_history(account, stop, limit, start);
}, },
"thread invoke for method " BOOST_PP_STRINGIZE(method_name)).wait(); "thread invoke for method " BOOST_PP_STRINGIZE(method_name))
.wait();
} }
} }