zpay32: rename to DefaultAssumedFinalCLTVDelta
This renames the paramter to clarify that this value is only used when no CLTV value was decoded from the payment request
This commit is contained in:
parent
6622c4814e
commit
53ab22305d
@ -3,9 +3,10 @@ package zpay32
|
||||
import "github.com/btcsuite/btcd/btcec"
|
||||
|
||||
const (
|
||||
// DefaultFinalCLTVDelta is the default value to be used as the final
|
||||
// CLTV delta for a route if one is unspecified.
|
||||
DefaultFinalCLTVDelta = 9
|
||||
// DefaultAssumedFinalCLTVDelta is the default value to be used as the
|
||||
// final CLTV delta for a route if one is unspecified in the payment
|
||||
// request.
|
||||
DefaultAssumedFinalCLTVDelta = 9
|
||||
)
|
||||
|
||||
// HopHint is a routing hint that contains the minimum information of a channel
|
||||
|
@ -324,7 +324,7 @@ func (invoice *Invoice) MinFinalCLTVExpiry() uint64 {
|
||||
return *invoice.minFinalCLTVExpiry
|
||||
}
|
||||
|
||||
return DefaultFinalCLTVDelta
|
||||
return DefaultAssumedFinalCLTVDelta
|
||||
}
|
||||
|
||||
// validateInvoice does a sanity check of the provided Invoice, making sure it
|
||||
|
Loading…
Reference in New Issue
Block a user