We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb1e2a5 commit d31b52fCopy full SHA for d31b52f
1 file changed
contracts/satoshi-bridge/src/api/bridge.rs
@@ -37,10 +37,6 @@ impl Contract {
37
.expect("Deserialization tx_bytes failed");
38
let deposit_amount = u128::from(transaction.output()[vout].value.to_sat());
39
require!(deposit_amount > 0, "Invalid deposit_amount");
40
- require!(
41
- transaction.lock_time() == LockTime::ZERO,
42
- "Tx with a non-zero lock_time are not supported."
43
- );
44
let deposit_address = self.generate_utxo_chain_address(&path);
45
let deposit_address_script_pubkey = deposit_address
46
.script_pubkey()
0 commit comments