mirror of
https://github.com/XRPLF/rippled.git
synced 2026-06-04 01:06:48 +00:00
chore: Enable clang-tidy misc checks (#6655)
This commit is contained in:
@@ -12,7 +12,7 @@ namespace xrpl {
|
||||
bool
|
||||
LoadFeeTrack::raiseLocalFee()
|
||||
{
|
||||
std::lock_guard sl(lock_);
|
||||
std::lock_guard const sl(lock_);
|
||||
|
||||
if (++raiseCount_ < 2)
|
||||
return false;
|
||||
@@ -37,7 +37,7 @@ LoadFeeTrack::raiseLocalFee()
|
||||
bool
|
||||
LoadFeeTrack::lowerLocalFee()
|
||||
{
|
||||
std::lock_guard sl(lock_);
|
||||
std::lock_guard const sl(lock_);
|
||||
std::uint32_t const origFee = localTxnLoadFee_;
|
||||
raiseCount_ = 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user