Skip to content

Commit b1739e4

Browse files
committed
Add a function for C++/Rust comparison interpreter
1 parent 30d90bc commit b1739e4

File tree

3 files changed

+43
-18
lines changed

3 files changed

+43
-18
lines changed

src/interpreter.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ impl SignatureChecker for BaseSignatureChecker {}
146146
#[derive(Copy, Clone)]
147147
pub struct CallbackTransactionSignatureChecker<'a> {
148148
pub sighash: SighashCalculator<'a>,
149-
pub lock_time: &'a ScriptNum,
149+
pub lock_time: ScriptNum,
150150
pub is_final: bool,
151151
}
152152

@@ -1304,11 +1304,11 @@ impl SignatureChecker for CallbackTransactionSignatureChecker<'_> {
13041304
// We want to compare apples to apples, so fail the script
13051305
// unless the type of nLockTime being tested is the same as
13061306
// the nLockTime in the transaction.
1307-
if *self.lock_time < LOCKTIME_THRESHOLD && *lock_time >= LOCKTIME_THRESHOLD
1308-
|| *self.lock_time >= LOCKTIME_THRESHOLD && *lock_time < LOCKTIME_THRESHOLD
1307+
if self.lock_time < LOCKTIME_THRESHOLD && *lock_time >= LOCKTIME_THRESHOLD
1308+
|| self.lock_time >= LOCKTIME_THRESHOLD && *lock_time < LOCKTIME_THRESHOLD
13091309
// Now that we know we're comparing apples-to-apples, the
13101310
// comparison is a simple numeric one.
1311-
|| lock_time > self.lock_time
1311+
|| *lock_time > self.lock_time
13121312
{
13131313
false
13141314
// Finally the nLockTime feature can be disabled and thus

src/lib.rs

+33-7
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ use tracing::warn;
2020

2121
pub use cxx::*;
2222
pub use interpreter::{
23-
CallbackTransactionSignatureChecker, HashType, SighashCalculator, SignedOutputs,
24-
VerificationFlags,
23+
CallbackTransactionSignatureChecker, DefaultStepEvaluator, HashType, SighashCalculator,
24+
SignedOutputs, VerificationFlags,
2525
};
2626
pub use zcash_script::*;
2727

@@ -250,6 +250,32 @@ pub struct ComparisonInterpreter<T, U> {
250250
second: U,
251251
}
252252

253+
pub fn cxx_rust_comparison_interpreter<'a>(
254+
sighash: &'a SighashCalculator<'a>,
255+
lock_time: u32,
256+
is_final: bool,
257+
flags: VerificationFlags,
258+
) -> ComparisonInterpreter<
259+
CxxInterpreter<'a>,
260+
StepwiseInterpreter<DefaultStepEvaluator<CallbackTransactionSignatureChecker<'a>>>,
261+
> {
262+
ComparisonInterpreter {
263+
first: CxxInterpreter {
264+
sighash: sighash,
265+
lock_time,
266+
is_final,
267+
},
268+
second: rust_interpreter(
269+
flags,
270+
CallbackTransactionSignatureChecker {
271+
sighash: sighash,
272+
lock_time: lock_time.into(),
273+
is_final,
274+
},
275+
),
276+
}
277+
}
278+
253279
/// This implementation is functionally equivalent to the `T` impl, but it also runs a second (`U`)
254280
/// impl and logs a warning if they disagree.
255281
impl<T: ZcashScript, U: ZcashScript> ZcashScript for ComparisonInterpreter<T, U> {
@@ -354,7 +380,7 @@ mod tests {
354380
flags,
355381
CallbackTransactionSignatureChecker {
356382
sighash: &sighash,
357-
lock_time: &lock_time.into(),
383+
lock_time: lock_time.into(),
358384
is_final,
359385
},
360386
),
@@ -384,7 +410,7 @@ mod tests {
384410
flags,
385411
CallbackTransactionSignatureChecker {
386412
sighash: &invalid_sighash,
387-
lock_time: &lock_time.into(),
413+
lock_time: lock_time.into(),
388414
is_final,
389415
},
390416
),
@@ -415,7 +441,7 @@ mod tests {
415441
flags,
416442
CallbackTransactionSignatureChecker {
417443
sighash: &missing_sighash,
418-
lock_time: &lock_time.into(),
444+
lock_time: lock_time.into(),
419445
is_final,
420446
},
421447
),
@@ -452,7 +478,7 @@ mod tests {
452478
flags,
453479
CallbackTransactionSignatureChecker {
454480
sighash: &sighash,
455-
lock_time: &lock_time.into(),
481+
lock_time: lock_time.into(),
456482
is_final,
457483
},
458484
),
@@ -487,7 +513,7 @@ mod tests {
487513
flags,
488514
CallbackTransactionSignatureChecker {
489515
sighash: &sighash,
490-
lock_time: &lock_time.into(),
516+
lock_time: lock_time.into(),
491517
is_final,
492518
},
493519
),

src/zcash_script.rs

+6-7
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ mod tests {
289289

290290
let checker = CallbackTransactionSignatureChecker {
291291
sighash: &sighash,
292-
lock_time: &n_lock_time.into(),
292+
lock_time: n_lock_time.into(),
293293
is_final,
294294
};
295295
let rust_stepper = DefaultStepEvaluator { flags, checker };
@@ -316,7 +316,7 @@ mod tests {
316316

317317
let checker = CallbackTransactionSignatureChecker {
318318
sighash: &sighash,
319-
lock_time: &n_lock_time.into(),
319+
lock_time: n_lock_time.into(),
320320
is_final,
321321
};
322322
let rust_stepper = DefaultStepEvaluator { flags, checker };
@@ -381,7 +381,7 @@ mod tests {
381381

382382
let checker = CallbackTransactionSignatureChecker {
383383
sighash: &invalid_sighash,
384-
lock_time: &n_lock_time.into(),
384+
lock_time: n_lock_time.into(),
385385
is_final,
386386
};
387387
let rust_stepper = DefaultStepEvaluator { flags, checker };
@@ -408,7 +408,7 @@ mod tests {
408408

409409
let checker = CallbackTransactionSignatureChecker {
410410
sighash: &missing_sighash,
411-
lock_time: &n_lock_time.into(),
411+
lock_time: n_lock_time.into(),
412412
is_final,
413413
};
414414
let rust_stepper = DefaultStepEvaluator { flags, checker };
@@ -442,7 +442,7 @@ mod tests {
442442
) {
443443
let checker = CallbackTransactionSignatureChecker {
444444
sighash: &missing_sighash,
445-
lock_time: &lock_time.into(),
445+
lock_time: lock_time.into(),
446446
is_final,
447447
};
448448
let flags = repair_flags(VerificationFlags::from_bits_truncate(flags));
@@ -470,10 +470,9 @@ mod tests {
470470
// Don’t waste test cases on whether or not `SigPushOnly` is set.
471471
(VerificationFlags::all() - VerificationFlags::SigPushOnly).bits()),
472472
) {
473-
let lt = lock_time.into();
474473
let checker = CallbackTransactionSignatureChecker {
475474
sighash: &missing_sighash,
476-
lock_time: &lt,
475+
lock_time: lock_time.into(),
477476
is_final,
478477
};
479478
let flags = repair_flags(VerificationFlags::from_bits_truncate(flags)) | VerificationFlags::SigPushOnly;

0 commit comments

Comments
 (0)