Small compile fix

This commit is contained in:
Miha Čančula 2019-09-18 17:19:47 +02:00
parent 50932bb5ff
commit 243690c67d

View file

@ -89,7 +89,7 @@ void websocket_api_connection::send_notice(
if( _connection )
{
fc::rpc::request req{ optional<uint64_t>(), "notice", {callback_id, std::move(args)}};
_connection.send_message( fc::json::to_string(fc::variant(req, _max_conversion_depth),
_connection->send_message( fc::json::to_string(fc::variant(req, _max_conversion_depth),
fc::json::stringify_large_ints_and_doubles, _max_conversion_depth ) );
}
}