From fd6137e9f2c1d8159a696b1b4680e9cf78a18363 Mon Sep 17 00:00:00 2001 From: svost Date: Sun, 26 Dec 2021 15:40:00 +0300 Subject: [PATCH] Fix analyzer noise --- src/wallet.cpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/wallet.cpp b/src/wallet.cpp index b2b395b..83cc274 100644 --- a/src/wallet.cpp +++ b/src/wallet.cpp @@ -2221,7 +2221,7 @@ bool CWallet::MergeCoins(const int64_t& nAmount, const int64_t& nMinValue, const if (wtxNew.vout[0].nValue > 0) { int64_t nBytes = ::GetSerializeSize(*(CTransaction*)&wtxNew, SER_NETWORK, PROTOCOL_VERSION) + wtxNew.vin.size() * 110; - double dFinalPriority = dWeight /= nBytes; + double dFinalPriority = dWeight / nBytes; bool fAllowFree = CTransaction::AllowFree(dFinalPriority); // Get actual transaction fee according to its size and priority -- 1.7.1