We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d20a0c5 commit a4af9f2Copy full SHA for a4af9f2
src/lib.rs
@@ -249,8 +249,6 @@ pub trait ArbitraryOfType: Sized {
249
mod tests {
250
use base64::display::Base64Display;
251
use base64::engine::general_purpose::STANDARD;
252
- #[cfg(feature = "serde")]
253
- use elements::LockTime;
254
use simplicity::BitMachine;
255
use std::borrow::Cow;
256
use std::path::Path;
@@ -426,7 +424,7 @@ mod tests {
426
424
let mut t = TestCase::program_file("./examples/non_interactive_fee_bump.simf")
427
425
.with_witness_file("./examples/non_interactive_fee_bump.wit");
428
t.sequence = elements::Sequence::ENABLE_LOCKTIME_NO_RBF;
429
- t.lock_time = LockTime::from_time(1734967235 + 600).unwrap();
+ t.lock_time = elements::LockTime::from_time(1734967235 + 600).unwrap();
430
t.include_fee_output = true;
431
t.assert_run_success();
432
}
0 commit comments