mirror of
https://github.com/aljazceru/lightning.git
synced 2026-01-06 23:54:22 +01:00
spelling: Check LockTime Verify.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
committed by
Christian Decker
parent
e1b1abd328
commit
ad2519a6f4
@@ -152,7 +152,7 @@ struct htlc_out *htlc_out_check(const struct htlc_out *hout,
|
||||
" less than %"PRIu64,
|
||||
hout->in->msatoshi, hout->msatoshi);
|
||||
if (hout->in->cltv_expiry <= hout->cltv_expiry)
|
||||
return corrupt(abortstr, "Input ctlv_expiry %u"
|
||||
return corrupt(abortstr, "Input cltv_expiry %u"
|
||||
" less than %u",
|
||||
hout->in->cltv_expiry, hout->cltv_expiry);
|
||||
if (!sha256_eq(&hout->in->payment_hash, &hout->payment_hash))
|
||||
|
||||
@@ -316,10 +316,10 @@ static void config_register_opts(struct lightningd *ld)
|
||||
"Percentage of fee to request for their commitment");
|
||||
opt_register_arg("--cltv-delta", opt_set_u32, opt_show_u32,
|
||||
&ld->config.cltv_expiry_delta,
|
||||
"Number of blocks for ctlv_expiry_delta");
|
||||
"Number of blocks for cltv_expiry_delta");
|
||||
opt_register_arg("--cltv-final", opt_set_u32, opt_show_u32,
|
||||
&ld->config.cltv_final,
|
||||
"Number of blocks for final ctlv_expiry");
|
||||
"Number of blocks for final cltv_expiry");
|
||||
opt_register_arg("--commit-time=<millseconds>",
|
||||
opt_set_u32, opt_show_u32,
|
||||
&ld->config.commit_time_ms,
|
||||
|
||||
Reference in New Issue
Block a user