File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -1625,7 +1625,7 @@ int main( int argc, char** argv ) {
1625
1625
textdomain (locale_domain);
1626
1626
context = eosio::client::http::create_http_context ();
1627
1627
1628
- abi_serializer::set_max_serialization_time ( fc::seconds (1 ) ); // No risk to client side serialization taking a long time
1628
+ fc::microseconds abi_serializer_max_time = fc::seconds (1 ); // No risk to client side serialization taking a long time
1629
1629
1630
1630
CLI::App app{" Command Line Interface to EOSIO Client" };
1631
1631
app.require_subcommand ();
@@ -2643,8 +2643,7 @@ int main( int argc, char** argv ) {
2643
2643
2644
2644
fc::variant trx_var;
2645
2645
abi_serializer abi;
2646
- fc::microseconds max_serialization_time = eosio::chain::config::default_abi_serializer_max_time_ms;
2647
- abi.to_variant (trx, trx_var, resolver, max_serialization_time);
2646
+ abi.to_variant (trx, trx_var, resolver, abi_serializer_max_time);
2648
2647
obj[" transaction" ] = trx_var;
2649
2648
std::cout << fc::json::to_pretty_string (obj)
2650
2649
<< std::endl;
You can’t perform that action at this time.
0 commit comments