Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tapchannel/aux_invoice_manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import (
"encoding/json"
"fmt"
"math/big"
"math/rand/v2"
"testing"
"time"

Expand Down Expand Up @@ -820,11 +821,10 @@ func genHtlc(t *rapid.T, balance []*rfqmsg.AssetBalance,
// method also returns the assetUnits and the rfqID used by the htlc.
func genRequest(t *rapid.T) (lndclient.InvoiceHtlcModifyRequest, uint64,
asset.ID, rfqmsg.ID) {

request := lndclient.InvoiceHtlcModifyRequest{
CircuitKey: invoices.CircuitKey{
ChanID: lnwire.NewShortChanIDFromInt(
rapid.Uint64().Draw(t, "chan_id"),
rand.Uint64(),
),
},
}
Expand Down
Loading