From 243690c67d536ec4df5b347459928a29b45854c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miha=20=C4=8Can=C4=8Dula?= Date: Wed, 18 Sep 2019 17:19:47 +0200 Subject: [PATCH] Small compile fix --- src/rpc/websocket_api.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rpc/websocket_api.cpp b/src/rpc/websocket_api.cpp index 5f3af85..d9b9cad 100755 --- a/src/rpc/websocket_api.cpp +++ b/src/rpc/websocket_api.cpp @@ -89,7 +89,7 @@ void websocket_api_connection::send_notice( if( _connection ) { fc::rpc::request req{ optional(), "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 ) ); } }