aboutsummaryrefslogtreecommitdiff
path: root/src/test/fuzz/fees.cpp
diff options
context:
space:
mode:
authorpracticalswift <practicalswift@users.noreply.github.com>2020-04-22 13:56:40 +0000
committerpracticalswift <practicalswift@users.noreply.github.com>2020-04-26 20:23:56 +0000
commita4e3d13df6a6f48974f541de0b5b061e8078ba9a (patch)
tree3e05bc7b0943c9970a232499049ecedc3c45be43 /src/test/fuzz/fees.cpp
parenta19598cf9851cb238a4b5caa04f9ae7281532352 (diff)
downloadbitcoin-a4e3d13df6a6f48974f541de0b5b061e8078ba9a.tar.xz
tests: Add fuzzing coverage for StringForFeeReason(...)
Diffstat (limited to 'src/test/fuzz/fees.cpp')
-rw-r--r--src/test/fuzz/fees.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/fuzz/fees.cpp b/src/test/fuzz/fees.cpp
index 090994263e..f29acace23 100644
--- a/src/test/fuzz/fees.cpp
+++ b/src/test/fuzz/fees.cpp
@@ -8,6 +8,7 @@
#include <test/fuzz/FuzzedDataProvider.h>
#include <test/fuzz/fuzz.h>
#include <test/fuzz/util.h>
+#include <util/fees.h>
#include <cstdint>
#include <string>
@@ -23,4 +24,6 @@ void test_one_input(const std::vector<uint8_t>& buffer)
const CAmount rounded_fee = fee_filter_rounder.round(current_minimum_fee);
assert(MoneyRange(rounded_fee));
}
+ const FeeReason fee_reason = fuzzed_data_provider.PickValueInArray({FeeReason::NONE, FeeReason::HALF_ESTIMATE, FeeReason::FULL_ESTIMATE, FeeReason::DOUBLE_ESTIMATE, FeeReason::CONSERVATIVE, FeeReason::MEMPOOL_MIN, FeeReason::PAYTXFEE, FeeReason::FALLBACK, FeeReason::REQUIRED});
+ (void)StringForFeeReason(fee_reason);
}