mirror of
https://github.com/XRPLF/rippled.git
synced 2026-07-28 01:20:32 +00:00
style: More clang-tidy identifier renaming (#7290)
This commit is contained in:
@@ -120,7 +120,7 @@ class WSClientImpl : public WSClient
|
||||
std::condition_variable cv_;
|
||||
std::list<std::shared_ptr<Msg>> msgs_;
|
||||
|
||||
unsigned rpc_version_;
|
||||
unsigned rpcVersion_;
|
||||
|
||||
void
|
||||
cleanup()
|
||||
@@ -157,7 +157,7 @@ public:
|
||||
, thread_([&] { ios_.run(); })
|
||||
, stream_(ios_)
|
||||
, ws_(stream_)
|
||||
, rpc_version_(rpcVersion)
|
||||
, rpcVersion_(rpcVersion)
|
||||
{
|
||||
try
|
||||
{
|
||||
@@ -197,7 +197,7 @@ public:
|
||||
json::Value jp;
|
||||
if (params)
|
||||
jp = params;
|
||||
if (rpc_version_ == 2)
|
||||
if (rpcVersion_ == 2)
|
||||
{
|
||||
jp[jss::method] = cmd;
|
||||
jp[jss::jsonrpc] = "2.0";
|
||||
@@ -284,7 +284,7 @@ public:
|
||||
[[nodiscard]] unsigned
|
||||
version() const override
|
||||
{
|
||||
return rpc_version_;
|
||||
return rpcVersion_;
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user