You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added option WithSkippedTxs, which has one historical problematic tx by default.
Sweeps originating from these transactions are omitted when reading from DB.
Changed SQLStore.DropBatch not to check that the batch being removed is empty.
It is not the case when removing a batch having only skipped sweeps.
Changed StoreMock.InsertSweepBatch not to reuse batch_id. This is needed by
the test, which checks that new batch has fresh ID.
Copy file name to clipboardExpand all lines: loopd/config.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -184,6 +184,8 @@ type Config struct {
184
184
185
185
LoopOutMaxPartsuint32`long:"loopoutmaxparts" description:"The maximum number of payment parts that may be used for a loop out swap."`
186
186
187
+
SkippedTxs []string`long:"skippedtxs" description:"The list of existing HTLC txids to skip when starting Loop. This should only be used if affected by the historical bug."`
188
+
187
189
TotalPaymentTimeout time.Duration`long:"totalpaymenttimeout" description:"The timeout to use for off-chain payments."`
188
190
MaxPaymentRetriesint`long:"maxpaymentretries" description:"The maximum number of times an off-chain payment may be retried."`
0 commit comments