diff options
author | Anthony Towns <aj@erisian.com.au> | 2022-11-22 01:39:32 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2023-01-25 18:13:42 +1000 |
commit | be2304676bedcd15debcdc694549fdd2b255ba62 (patch) | |
tree | db3646c6daeedeb178905e8527e1311fea2bb722 /src/test | |
parent | a4fe09973aa82210b98dcb4e4e9f11ef59780f9b (diff) |
txorphange: Drop redundant originator arg from GetTxToReconsider
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/fuzz/txorphan.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/fuzz/txorphan.cpp b/src/test/fuzz/txorphan.cpp index dff29bcd6e..4673b884dc 100644 --- a/src/test/fuzz/txorphan.cpp +++ b/src/test/fuzz/txorphan.cpp @@ -89,9 +89,8 @@ FUZZ_TARGET_INIT(txorphan, initialize_orphanage) }, [&] { { - NodeId originator; bool more = true; - CTransactionRef ref = orphanage.GetTxToReconsider(peer_id, originator, more); + CTransactionRef ref = orphanage.GetTxToReconsider(peer_id, more); if (!ref) { Assert(!more); } else { |