diff options
| author | Fabian Jahr <[email protected]> | 2020-06-02 23:52:34 +0200 |
|---|---|---|
| committer | Fabian Jahr <[email protected]> | 2020-06-22 00:55:44 +0200 |
| commit | a712cf6f6801157667fcf36d1c498b6fff6d328a (patch) | |
| tree | 1ac2dbe3f86e8d04b271fa0c187f522cf963c110 /src/test/fuzz | |
| parent | refactor: Extract GetBogoSize function (diff) | |
| download | discoin-a712cf6f6801157667fcf36d1c498b6fff6d328a.tar.xz discoin-a712cf6f6801157667fcf36d1c498b6fff6d328a.zip | |
rpc: gettxoutsetinfo can specify hash_type (only legacy option for now)
Diffstat (limited to 'src/test/fuzz')
| -rw-r--r-- | src/test/fuzz/coins_view.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/fuzz/coins_view.cpp b/src/test/fuzz/coins_view.cpp index 52dd62a14..c186bef7a 100644 --- a/src/test/fuzz/coins_view.cpp +++ b/src/test/fuzz/coins_view.cpp @@ -278,7 +278,7 @@ void test_one_input(const std::vector<uint8_t>& buffer) CCoinsStats stats; bool expected_code_path = false; try { - (void)GetUTXOStats(&coins_view_cache, stats); + (void)GetUTXOStats(&coins_view_cache, stats, CoinStatsHashType::HASH_SERIALIZED); } catch (const std::logic_error&) { expected_code_path = true; } |