File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,12 +2,12 @@ package dcrlibwallet
22
33import (
44 "context"
5- "github.com/raedahgroup/dcrlibwallet/walletint"
65
76 "github.com/asdine/storm"
87 "github.com/decred/dcrwallet/errors/v2"
98 w "github.com/decred/dcrwallet/wallet/v3"
109 "github.com/raedahgroup/dcrlibwallet/spv"
10+ "github.com/raedahgroup/dcrlibwallet/walletint"
1111)
1212
1313const (
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ package dcrlibwallet
22
33import (
44 "context"
5- "github.com/raedahgroup/dcrlibwallet/walletint"
65 "net"
76 "strings"
87 "sync"
@@ -12,6 +11,7 @@ import (
1211 "github.com/decred/dcrwallet/p2p/v2"
1312 w "github.com/decred/dcrwallet/wallet/v3"
1413 "github.com/raedahgroup/dcrlibwallet/spv"
14+ "github.com/raedahgroup/dcrlibwallet/walletint"
1515)
1616
1717// reading/writing of properties of this struct are protected by mutex.x
Original file line number Diff line number Diff line change 77
88func (mw * MultiWallet ) listenForTransactions (walletID int ) {
99 if len (mw .fakeInternalWallet ) > 0 {
10- return
10+ return // no listening for fake internal wallets
1111 }
1212 wallet := mw .wallets [walletID ]
1313 n := wallet .internal .GetNtfnServer ().TransactionNotifications ()
You can’t perform that action at this time.
0 commit comments