From bd03a51482a3b2e4f7997b234370dbb286d0aa75 Mon Sep 17 00:00:00 2001 From: teor Date: Thu, 4 Feb 2021 09:48:00 +1000 Subject: [PATCH] Remove an outdated comment in the script verifier (#1680) --- zebra-consensus/src/script.rs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/zebra-consensus/src/script.rs b/zebra-consensus/src/script.rs index 6b5a9821b..fbecb9f58 100644 --- a/zebra-consensus/src/script.rs +++ b/zebra-consensus/src/script.rs @@ -50,13 +50,9 @@ impl Verifier { /// A script verification request. #[derive(Debug)] pub struct Request { - /// Ideally, this would supply only an `Outpoint` and the unlock script, - /// rather than the entire `Transaction`, but we call a C++ - /// implementation, and its FFI requires the entire transaction. - /// - /// This causes quadratic script verification behavior, so - /// at some future point, we need to reform this data. + /// A cached transaction, in the format required by the script verifier FFI interface. pub cached_ffi_transaction: Arc, + /// The index of an input in `cached_ffi_transaction`, used for verifying this request pub input_index: usize, /// A set of additional UTXOs known in the context of this verification request. ///