Remove an outdated comment in the script verifier (#1680)

This commit is contained in:
teor 2021-02-04 09:48:00 +10:00 committed by GitHub
parent 919dc0307f
commit bd03a51482
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 6 deletions

View File

@ -50,13 +50,9 @@ impl<ZS> Verifier<ZS> {
/// 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<CachedFfiTransaction>,
/// 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.
///