File tree 4 files changed +8
-8
lines changed
4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ package lndc
3
3
import (
4
4
"bytes"
5
5
"encoding/hex"
6
- "github.com/mit-dci/lit/btcutil/koblitz"
7
- "github.com/mit-dci/lit/crypto/koblitz"
8
- "github.com/mit-dci/lit/lnutil"
9
- "github.com/mit-dci/lit/logging"
10
6
"io"
11
7
"math"
12
8
"net"
13
9
"sync"
14
10
"testing"
11
+
12
+ "github.com/mit-dci/lit/crypto/koblitz"
13
+ "github.com/mit-dci/lit/lnutil"
14
+ "github.com/mit-dci/lit/logging"
15
15
)
16
16
17
17
type maybeNetConn struct {
Original file line number Diff line number Diff line change @@ -600,7 +600,7 @@ func (nd *LitNode) ReloadQchanState(q *Qchan) error {
600
600
if txoBytes == nil {
601
601
return fmt .Errorf ("utxo value empty" )
602
602
}
603
- u , err := portxo .PorTxoFromBytes (txoBytes [99 :])
603
+ u , err := portxo .PorTxoFromBytes (txoBytes [107 :])
604
604
if err != nil {
605
605
return err
606
606
}
Original file line number Diff line number Diff line change 5
5
"crypto/rand"
6
6
"fmt"
7
7
8
- "github.com/adiabat/bech32"
9
- "github.com/btcsuite/fastsha256"
8
+ "github.com/mit-dci/lit/bech32"
10
9
"github.com/mit-dci/lit/consts"
10
+ "github.com/mit-dci/lit/crypto/fastsha256"
11
11
"github.com/mit-dci/lit/lnutil"
12
12
"github.com/mit-dci/lit/logging"
13
13
)
Original file line number Diff line number Diff line change 4
4
"bytes"
5
5
"encoding/binary"
6
6
7
- "github.com/btcsuite /fastsha256"
7
+ "github.com/mit-dci/lit/crypto /fastsha256"
8
8
)
9
9
10
10
/*
You can’t perform that action at this time.
0 commit comments