Skip to content

Commit

Permalink
Whitespace cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
greg7mdp committed Apr 11, 2023
1 parent 52e25cd commit 9aa412b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/chain_plugin/chain_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2214,7 +2214,7 @@ void read_write::send_transaction(const read_write::send_transaction_params& par
} else {
auto trx_trace_ptr = std::get<transaction_trace_ptr>(result);
auto yield = abi_serializer::create_yield_function(fc::microseconds::maximum());
auto abi_cache = abi_serializer_cache_builder(make_resolver(db, std::move(yield))).add_serializers(trx_trace_ptr).get();
auto abi_cache = abi_serializer_cache_builder(make_resolver(db, std::move(yield))).add_serializers(trx_trace_ptr).get();
using return_type = t_or_exception<read_write::send_transaction_results>;
next([this, trx_trace_ptr, resolver = abi_resolver(std::move(abi_cache))]() mutable {
try {
Expand Down
2 changes: 1 addition & 1 deletion plugins/http_plugin/include/eosio/http_plugin/macros.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ struct async_result_visitor : public fc::visitor<fc::variant> {
using http_fwd_t = std::function<chain::t_or_exception<call_result>()>; \
api_handle.call_name( std::move(params), \
[&_http_plugin, cb=std::move(cb), body=std::move(body)] \
(const chain::next_function_variant<call_result>& result){ \
(const chain::next_function_variant<call_result>& result) { \
if (std::holds_alternative<fc::exception_ptr>(result)) { \
try { \
std::get<fc::exception_ptr>(result)->dynamic_rethrow_exception(); \
Expand Down

0 comments on commit 9aa412b

Please sign in to comment.