mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 20:42:59 +01:00
commit
09c4fd157c
@ -2995,7 +2995,8 @@ bool SendMessages(CNode* pto, CConnman& connman)
|
||||
CAmount currentFilter = mempool.GetMinFee(GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000).GetFeePerK();
|
||||
int64_t timeNow = GetTimeMicros();
|
||||
if (timeNow > pto->nextSendTimeFeeFilter) {
|
||||
static FeeFilterRounder filterRounder(::minRelayTxFee);
|
||||
static CFeeRate default_feerate(DEFAULT_MIN_RELAY_TX_FEE);
|
||||
static FeeFilterRounder filterRounder(default_feerate);
|
||||
CAmount filterToSend = filterRounder.round(currentFilter);
|
||||
if (filterToSend != pto->lastSentFeeFilter) {
|
||||
connman.PushMessage(pto, msgMaker.Make(NetMsgType::FEEFILTER, filterToSend));
|
||||
|
Loading…
Reference in New Issue
Block a user