From 3e6558c81f2799c7a02b4623d4959a7d5741eb51 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Thu, 1 Feb 2024 10:56:19 +1100 Subject: [PATCH] Remove TODO, determine lock time is useful --- src/v2/mod.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/v2/mod.rs b/src/v2/mod.rs index 6585045..e8a03c8 100644 --- a/src/v2/mod.rs +++ b/src/v2/mod.rs @@ -526,7 +526,6 @@ impl Psbt { /// Determines the lock time as specified in [BIP-370] if it is possible to do so. /// /// [BIP-370]: - // TODO: Does this need to be public? pub fn determine_lock_time(&self) -> Result { let require_time_based_lock_time = self.inputs.iter().any(|input| input.requires_time_based_lock_time());