diff --git a/src/policy/fees.cpp b/src/policy/fees.cpp index 17cac1ce6..7762a4dc6 100644 --- a/src/policy/fees.cpp +++ b/src/policy/fees.cpp @@ -59,7 +59,9 @@ unsigned int TxConfirmStats::FindBucketIndex(double val) //assert(it != bucketMap.end()); if ( it != bucketMap.end() ) { - fprintf(stderr,"FindBucketIndex violation: from val %f\n",val); + static uint32_t counter; + if ( counter++ < 10 ) + fprintf(stderr,"FindBucketIndex violation: from val %f\n",val); } return it->second; }