From cf43d2125a1a6bde231912ebad8520c27eae47cd Mon Sep 17 00:00:00 2001 From: Dima Litvinov Date: Mon, 12 Feb 2024 18:03:06 +0000 Subject: [PATCH] SKALED-1811 Fix net_version call error --- libweb3jsonrpc/Net.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libweb3jsonrpc/Net.h b/libweb3jsonrpc/Net.h index bc53e0c2b..dbf63c355 100644 --- a/libweb3jsonrpc/Net.h +++ b/libweb3jsonrpc/Net.h @@ -44,7 +44,7 @@ class Net : public NetFace { virtual bool net_listening() override; private: - const dev::eth::ChainParams& m_chainParams; + const dev::eth::ChainParams m_chainParams; }; } // namespace rpc