We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e70d347 commit 9f57c8eCopy full SHA for 9f57c8e
staticaddr/loopin/interface.go
@@ -15,6 +15,17 @@ import (
15
"github.com/lightningnetwork/lnd/zpay32"
16
)
17
18
+const (
19
+ // DefaultLoopInOnChainCltvDelta is the time lock relative to current
20
+ // block height that swap server will accept on the swap initiation
21
+ // call.
22
+ DefaultLoopInOnChainCltvDelta = 1000
23
+
24
+ // DepositHtlcDelta is a safety buffer of blocks that needs to exist
25
+ // between the deposit expiry height and the htlc expiry height.
26
+ DepositHtlcDelta = 50
27
+)
28
29
type (
30
// ValidateLoopInContract validates the contract parameters against our
31
// request.
0 commit comments