diff options
author | Anthony Towns <aj@erisian.com.au> | 2021-03-25 14:13:45 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2022-11-29 09:03:57 +1000 |
commit | a4fe09973aa82210b98dcb4e4e9f11ef59780f9b (patch) | |
tree | 5dfbdc1a79d3cd27c065ba4c9af1c8cab628b7ba /src/test/fuzz | |
parent | d415b7261c05dafbc3e65eea72d270b2bed0958b (diff) |
txorphanage: index workset by originating peer
Diffstat (limited to 'src/test/fuzz')
-rw-r--r-- | src/test/fuzz/txorphan.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/fuzz/txorphan.cpp b/src/test/fuzz/txorphan.cpp index 02743051e8..dff29bcd6e 100644 --- a/src/test/fuzz/txorphan.cpp +++ b/src/test/fuzz/txorphan.cpp @@ -85,7 +85,7 @@ FUZZ_TARGET_INIT(txorphan, initialize_orphanage) CallOneOf( fuzzed_data_provider, [&] { - orphanage.AddChildrenToWorkSet(*tx, peer_id); + orphanage.AddChildrenToWorkSet(*tx); }, [&] { { |